Tim Evens c3839aa8fb Security fixes, issues resolved, and more
* Upgrades to all containers
* Resolves #7, resolves #6, resolves #2
* Compose changed to use versions instead of latest
* OBMP containers now use a version tag instead of build numbers
2022-01-28 15:12:01 -08:00
..

OpenBMP Development Image

This image is the base development image used to build all the OpenBMP components. It has all the needed dependencies included.

Build Image

docker build -t openbmp/dev-image:build-NNN .

Publish Image to dockerhub

# Login to docker
docker login

# Tag the image
docker tag openbmp/dev-image:build-NNN openbmp/dev-image:latest

# Upload the image
docker push openbmp/dev-image:build-NNN
docker push openbmp/dev-image:latest

Running

docker run --rm -v $(PWD):/ws -it openbmp/dev-image /bin/bash