aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-01-01 13:17:40 +0000
committerGravatar Chris Lovering <[email protected]>2025-01-01 13:17:40 +0000
commit14b390097850ab1cc6008bf62b1be56a8cd87916 (patch)
treeb85b8e0e2cbc4c35ebf478fd77035552458950ec
parentBump poetry version used to 1.8.5 (diff)
Remove need for curl install
-rw-r--r--Dockerfile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index 19992db..4343d28 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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