From f6f4dbde3031d5845ff3a52ab48e0e3c26202a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Tue, 17 Aug 2021 12:29:46 +0200 Subject: [PATCH] Update source of poetry installation script --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 870afe3d..e9a565bb 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Then you could have a `Dockerfile` like: FROM tiangolo/uvicorn-gunicorn:python3.7 # 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://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | POETRY_HOME=/opt/poetry python && \ cd /usr/local/bin && \ ln -s /opt/poetry/bin/poetry && \ poetry config virtualenvs.create false