diff options
author | 2021-06-04 19:40:56 +0100 | |
---|---|---|
committer | 2021-06-04 19:40:56 +0100 | |
commit | d15881bce95dc0bf4c6044815e20df056790de2a (patch) | |
tree | a7c7832b55e775d62a85695532c4094ede8421ef | |
parent | Merge pull request #614 from Shivansh-007/feature/pride-leaders (diff) | |
parent | Install Poetry globally in Docker (diff) |
Merge pull request #765 from python-discord/poetry-in-docker-bug-fix
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,9 +4,8 @@ FROM python:3.9-slim ENV PIP_NO_CACHE_DIR=false \ POETRY_VIRTUALENVS_CREATE=false -# Install Poetry and add it to the path -RUN pip install --user poetry -ENV PATH="${PATH}:/root/.local/bin" +# Install Poetry +RUN pip install --upgrade poetry WORKDIR /bot |