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 bf38d04 commit 0c9463cCopy full SHA for 0c9463c
latex/Dockerfile
@@ -11,6 +11,8 @@ ARG USER_GECOS=LaTeX
11
12
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
13
14
+ENV DEBIAN_FRONTEND=noninteractive
15
+
16
RUN apt-get update \
17
&& apt-get upgrade -y \
18
&& apt-get install --no-install-recommends -y \
@@ -39,7 +41,7 @@ RUN apt-get update \
39
41
&& apt-get --purge remove -y .\*-doc$ \
40
42
# Remove more unnecessary stuff
43
&& apt-get clean -y \
- && rm -rf /var/lib/apt/lists/*
44
+ && rm -rf /var/lib/apt/lists/* /var/log/* /var/cache/ldconfig/aux-cache
45
46
RUN adduser \
47
--home "${USER_HOME}" \
0 commit comments