We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61e7e98 + 3089fdb commit 470cf36Copy full SHA for 470cf36
2 files changed
.hadolint.yaml
@@ -0,0 +1,5 @@
1
+# These errors are ignored as fixing them might cause endesired behaviour when creating the image.
2
+ignored:
3
+ - DL3013
4
+ - DL3018
5
+
Dockerfile
@@ -1,4 +1,4 @@
-FROM alpine:3.22.1
+FROM alpine:3.22.2
# This hack is widely applied to avoid python printing issues in docker containers.
# See: https://github.com/Docker-Hub-frolvlad/docker-alpine-python3/pull/13
@@ -13,4 +13,4 @@ RUN echo "**** install Python ****" && \
13
python -m ensurepip && \
14
rm -r /usr/lib/python*/ensurepip && \
15
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && \
16
- pip install --no-cache --upgrade pip setuptools wheel
+ pip install --no-cache-dir --upgrade pip setuptools wheel
0 commit comments