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 6dab1d8 commit 726d463Copy full SHA for 726d463
latex/Dockerfile
@@ -12,8 +12,8 @@ ARG USER_GECOS=LaTeX
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
# FIXME biber=2.21-r0 \
18
coreutils=9.7-r1 \
19
curl=8.14.1-r1 \
@@ -22,7 +22,7 @@ RUN apk -U upgrade \
22
py3-pip=25.1.1-r0 \
23
python3=3.12.11-r0 \
24
texlive-full=20240210.69778-r10 \
25
- && apk cache clean \
+ && apk cache --no-cache clean \
26
&& rm -rf /var/cache/apk/*
27
28
RUN adduser \
0 commit comments