We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7ea51 commit db43211Copy full SHA for db43211
qrcode/Dockerfile
@@ -12,15 +12,15 @@ ARG USER_GECOS=Default
12
SHELL ["/bin/ash", "-euo", "pipefail", "-c"]
13
14
# hadolint ignore=DL3019
15
-RUN apk -U upgrade \
16
- && apk add \
+RUN apk upgrade --no-cache \
+ && apk add --no-cache \
17
coreutils=9.7-r1 \
18
curl=8.14.1-r1 \
19
git=2.49.1-r0 \
20
libqrencode-tools=4.1.1-r3 \
21
py3-pip=25.1.1-r0 \
22
python3=3.12.11-r0 \
23
- && apk cache clean \
+ && apk cache --no-cache clean \
24
&& rm -rf /var/cache/apk/*
25
26
RUN adduser \
0 commit comments