GCC docker image with additional build tools and libraries
1.8K
The Docker image gcc relies on Ubuntu 19.04 and contains a set of often used build tools for C/C++ projects.
The following tools are installed:
Run the following command:
$ docker run --rm -it -v $(pwd):/project mfisherman/gcc
It will automatically download the docker image to your system and run it.
The argument -it allows you to run the container in interactive mode and will open a shell.
Further, the command mounts the directory, from where you run the command above, into the folder /projectof the container.
That way you can use your favorite editor to write your code an run gccand g++in the container.
The image is built for a majority of Linux architectures, allowing you to run the image even on all Rasperry Pi versions (e.g. as gitlab-runner). The available operating systems and architectures are:
Content type
Image
Digest
Size
195.3 MB
Last updated
almost 6 years ago
docker pull mfisherman/gcc