diff --git a/{{cookiecutter.project_slug}}/Dockerfile b/{{cookiecutter.project_slug}}/Dockerfile index 3a57ccdc0..6d5ce1ad9 100644 --- a/{{cookiecutter.project_slug}}/Dockerfile +++ b/{{cookiecutter.project_slug}}/Dockerfile @@ -21,7 +21,7 @@ ENV POETRY_HOME=/opt/poetry \ POETRY_VIRTUALENVS_CREATE=false ENV PATH="${POETRY_HOME}/bin:${PATH}" # Install `poetry` via `curl` and system `python` -RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python && \ +RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python && \ poetry --version && \ poetry config --list {% if cookiecutter.jupyter_notebook_support == 'yes' %} diff --git a/{{cookiecutter.project_slug}}/Makefile b/{{cookiecutter.project_slug}}/Makefile index 127618ae9..48f2f346b 100644 --- a/{{cookiecutter.project_slug}}/Makefile +++ b/{{cookiecutter.project_slug}}/Makefile @@ -109,7 +109,7 @@ ifeq ($(shell command -v poetry),) @echo "poetry could not be found!" @echo "Please install poetry!" @echo "Ex.: 'curl -sSL \ - https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - \ + https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - \ && source $$HOME/.local/env'" @echo "see:" @echo "- https://python-poetry.org/docs/#installation"