diff --git a/Dockerfile b/Dockerfile index bc420fe..9ce2d47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,8 @@ COPY . /app # Install any needed packages specified in pyproject.toml RUN apt-get update && apt-get install -y gcc curl && \ curl -sSL https://install.python-poetry.org | python - && \ + echo "export PATH=$PATH:/root/.local/bin" >> ~/.bashrc && \ + . ~/.bashrc && \ poetry config virtualenvs.create false && \ poetry install --no-dev