File size: 339 Bytes
265f723 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env bash
source $(dirname $0)/common_header.sh
# Export the dependencies managed by Poetry in the requirements.txt format for pip
poetry export -f requirements.txt -o requirements.txt --without-hashes --with=jupyter
# Re-build the docker image.
docker build -f $ROOT_DIRECTORY/Dockerfile --label tests -t $CONTAINER_NAME .
|