Skip to content

Latest commit

 

History

History

environment

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Environment

Build & Publish Docker

python/requirements.txt specifies the Python dependencies for this repository.

GitHub Actions will automatically build and publish to this repo's package registry, when the source for the image changes. Therefore, you do not need to build the image locally. However, if you'd like to for development, run the following command with this directory as your current working directory:

# Build the Docker image specified by Dockerfile
docker build --tag docker.pkg.github.com/greenelab/iscb-diversity/iscb-diversity .

If you'd like to evaluate changes to the requirements in a currently running container, you can run the following command (from the repository's root directory):

docker exec iscb-diversity pip install --upgrade --requirement environment/requirements.txt