mgbam commited on
Commit
693e090
·
verified ·
1 Parent(s): eb9f6f3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -14,11 +14,11 @@ RUN apt-get update && \
14
  libsm6 \
15
  libxext6 \
16
  fontconfig \
17
- debconf-utils \ # <<< INSTALL 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
 
 
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