Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 607 Bytes

Development.md

File metadata and controls

25 lines (18 loc) · 607 Bytes

Development Notes

Testing

python -m pytest --cov=zarrcade --cov-report html -W ignore::DeprecationWarning

Building the Docker container

Run the Docker build, replacing <version> with your version number:

cd docker/
export VERSION=<version>
docker build . --build-arg GIT_TAG=$VERSION -t ghcr.io/janeliascicomp/zarrcade:$VERSION

Pushing the Docker container

docker push ghcr.io/janeliascicomp/zarrcade:$VERSION
docker tag ghcr.io/janeliascicomp/zarrcade:$VERSION ghcr.io/janeliascicomp/zarrcade:latest
docker push ghcr.io/janeliascicomp/zarrcade:latest