Closed niqdev closed 1 month ago
Publishes a docker image on every commit in master using the commit hash (snapshots) or on a new semver tag
requirements
Useful notes
How to save the dependencies
python3 -m venv ./venv source venv/bin/activate pip install git+https://github.com/mentat-is/muty-python pip install -e . pip freeze > requirements.txt deactivate
How to build the image and run the container
docker buildx build -t mentat-is/gulp:latest -f Dockerfile.alpine . docker run --rm --name gulp mentat-is/gulp docker run --rm --name gulp -it mentat-is/gulp bash docker compose --profile full up docker compose --profile full down -v
Just adding some issue references. This PR should address #5 partially, also related to #7.
Publishes a docker image on every commit in master using the commit hash (snapshots) or on a new semver tag
requirements
for reproducible buildsUseful notes
How to save the dependencies
How to build the image and run the container