diff options
author | 2025-01-01 13:17:40 +0000 | |
---|---|---|
committer | 2025-01-01 13:17:40 +0000 | |
commit | 14b390097850ab1cc6008bf62b1be56a8cd87916 (patch) | |
tree | b85b8e0e2cbc4c35ebf478fd77035552458950ec | |
parent | Bump poetry version used to 1.8.5 (diff) |
Remove need for curl install
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -12,9 +12,5 @@ ENV POETRY_VERSION=1.8.5 \ ENV PATH="$POETRY_HOME/bin:$PATH" -RUN apt-get update \ - && apt-get -y upgrade \ - && apt-get install --no-install-recommends -y curl \ - && apt-get clean && rm -rf /var/lib/apt/lists/* - -RUN curl -sSL https://install.python-poetry.org | python +ADD https://install.python-poetry.org /tmp/poetry_install.py +RUN python /tmp/poetry_install.py && rm /tmp/poetry_install.py |