Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -14,11 +14,11 @@ RUN apt-get update && \
|
|
14 |
libsm6 \
|
15 |
libxext6 \
|
16 |
fontconfig \
|
17 |
-
debconf-utils \
|
18 |
# For Microsoft Core Fonts EULA pre-acceptance
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
apt-get clean && \
|
23 |
rm -rf /var/lib/apt/lists/*
|
24 |
|
|
|
14 |
libsm6 \
|
15 |
libxext6 \
|
16 |
fontconfig \
|
17 |
+
debconf-utils && \
|
18 |
# For Microsoft Core Fonts EULA pre-acceptance
|
19 |
+
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-sections && \
|
20 |
+
apt-get install -y --no-install-recommends ttf-mscorefonts-installer && \
|
21 |
+
fc-cache -f -v && \
|
22 |
apt-get clean && \
|
23 |
rm -rf /var/lib/apt/lists/*
|
24 |
|