To build quickly projects using cmake, gcc, clang and essential build tools for compiling C/C++.
10K+
A container to build quickly projects using cmake, gcc, clang and essential build tools for compiling C/C++.
Use the following command to pull the image of on of these container:
.. code-block:: bash
podman pull docker.io/tprrt/alpine-cmake
Otherwise, it is possible to build the image, with the command below:
.. code-block:: bash
podman build -t tprrt/alpine-cmake:latest -f ./Dockerfile .
Run the container:
.. code-block:: bash
cd <src>
podman run --rm -i -t \
--security-opt seccomp=unconfined --security-opt label=disable \
--userns=keep-id \
--mount type=bind,source=$(pwd),target=/src \
--workdir /src \
tprrt/alpine-cmake
Stop the container:
.. code-block:: bash
podman container stop -t=1 tprrt/alpine-cmake
podman container rm tprrt/alpine-cmake
Content type
Image
Digest
sha256:8609cd27b…
Size
160.1 MB
Last updated
4 days ago
docker pull tprrt/alpine-cmake