Poetry and Docker
poetry install --no-dev
poetry shell
pip list --format=freeze > requirements.txt
Delete project from requirements.txt.
Update Dockerfile.
Delete any existing containers.
docker build -t command_name .
poetry install --no-dev
poetry shell
pip list --format=freeze > requirements.txt
Delete project from requirements.txt.
Update Dockerfile.
Delete any existing containers.
docker build -t command_name .