From GCC, add some basic tools for a minimal execution / debugging environment.
Source Dockerfile
To run the container:
# To run build tools only, use:
$ docker run -v "$(pwd)":/usr/src/`basename $(pwd)` -it sostheim/gcc-dev-env
# To run gdb, use:
$ docker run --security-opt seccomp=unconfined -v "$(pwd)":/usr/src/`basename $(pwd)` -it sostheim/gcc-dev-env
Either way, this will drop you in to a bash shell in the running container with access to the tools defined in the Dockerfile.
The project located at $(pwd) is mounted at /usr/src/.... From here you can begin compiling, running, debugging, etc...
Content type
Image
Digest
Size
761.5 MB
Last updated
over 8 years ago
docker pull sostheim/gcc-dev-env