AM
AMS21/docker-dev-images
docker development images
Very simple docker images used for the development of software
How to build and run
To build simply run:
docker build -t "ams21/dev-ubuntu:24.04" Ubuntu/24.04After that, you can open a shell by simply using
docker run -it "ams21/dev-ubuntu:24.04"Most likely you want to run the container inside your project folder. For that, you can use something like this:
docker run -v "$PWD":"$PWD" -w "$PWD" -it "ams21/dev-ubuntu:24.04" /bin/bashIf you want to run a different container than ubuntu:24.04 you just need to replace the name and path.