We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f6d92 commit 712cc28Copy full SHA for 712cc28
.hadolint.yaml
@@ -1,2 +1,2 @@
1
ignored:
2
- - DL3018
+ - DL3008
Dockerfile
@@ -25,9 +25,11 @@ ENV PIP_DEFAULT_TIMEOUT=100 \
25
PIP_NO_CACHE_DIR=1
26
27
# get poetry
28
-RUN apt-get update && \
29
- apt-get install -y --no-install-recommends curl && \
30
- curl -sSL https://install.python-poetry.org | python -
+RUN apt-get update \
+ && apt-get install -y --no-install-recommends curl \
+ && curl -sSL https://install.python-poetry.org | python - \
31
+ && apt-get clean \
32
+ && rm -rf /var/lib/apt/lists/*
33
34
RUN python -m venv "$VENV_PATH"
35
0 commit comments