aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-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