We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a21d53 commit 212eb51Copy full SHA for 212eb51
1 file changed
pdf/Dockerfile
@@ -12,8 +12,8 @@ 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
ghostscript=10.05.1-r0 \
@@ -26,7 +26,7 @@ RUN apk -U upgrade \
26
py3-pip=25.1.1-r0 \
27
python3=3.12.11-r0 \
28
qpdf=12.2.0-r0 \
29
- && apk cache clean \
+ && apk cache --no-cache clean \
30
&& rm -rf /var/cache/apk/*
31
32
RUN VERSION=$(curl -s -S -f https://gitlab.com/api/v4/projects/5024297/releases | jq -r '.[0].tag_name') \
0 commit comments