Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -12,8 +12,9 @@ RUN apt-get update && \
|
|
12 |
libsm6 \
|
13 |
libxext6 \
|
14 |
fontconfig \
|
15 |
-
debconf-utils && \
|
16 |
# For Microsoft Core Fonts EULA pre-acceptance, use full path for robustness
|
|
|
17 |
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | /usr/bin/debconf-set-sections && \
|
18 |
# Install Microsoft Core Fonts
|
19 |
apt-get install -y --no-install-recommends ttf-mscorefonts-installer && \
|
|
|
12 |
libsm6 \
|
13 |
libxext6 \
|
14 |
fontconfig \
|
15 |
+
debconf-utils && \
|
16 |
# For Microsoft Core Fonts EULA pre-acceptance, use full path for robustness
|
17 |
+
# Ensure 'echo' is properly part of the RUN command chain
|
18 |
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | /usr/bin/debconf-set-sections && \
|
19 |
# Install Microsoft Core Fonts
|
20 |
apt-get install -y --no-install-recommends ttf-mscorefonts-installer && \
|