Skip to content

Commit

Permalink
ci: Updated Dockerfile to reference https://install.python-poetry.org
Browse files Browse the repository at this point in the history
…for poetry install.

ci: Updated Dockerfile to reference https://install.python-poetry.org for poetry install. The previous get-poetry.py and install-poetry.py installers are deprecated. Any installs performed using get-poetry.py should be uninstalled and reinstalled using install.python-poetry.org to ensure in-place upgrades are possible.
  • Loading branch information
michealroberts committed Aug 31, 2022
1 parent 5385d91 commit d30a03f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PYTHONUNBUFFERED 1
WORKDIR /usr/src/app

# Install Poetry
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_HOME=/opt/poetry python && \
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python && \
cd /usr/local/bin && \
ln -s /opt/poetry/bin/poetry && \
poetry config virtualenvs.create false
Expand Down

0 comments on commit d30a03f

Please sign in to comment.