File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apt-get -qq update \
1111 && `#----- Deal with ttf-mscorefonts-installer -----` \
1212 && apt-get -qq install --yes --no-install-recommends xfonts-utils cabextract \
1313 && wget --quiet --output-document /tmp/ttf-mscorefonts-installer_3.6_all.deb http://ftp.us.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb \
14- && dpkg --install /tmp/ttf-mscorefonts-installer_3.6_all.deb \
14+ && dpkg --install /tmp/ttf-mscorefonts-installer_3.6_all.deb 2> /dev/null \
1515 && rm /tmp/ttf-mscorefonts-installer_3.6_all.deb \
1616 && `#----- Install gosu -----` \
1717 && wget --quiet --output-document /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
@@ -26,9 +26,9 @@ ADD *.deb /tmp/
2626ENV PLATFORM_VERSION 83
2727ENV SERVER_VERSION 8.3.10-2639
2828
29- RUN dpkg --install /tmp/1c-enterprise$PLATFORM_VERSION-common_${SERVER_VERSION}_amd64.deb \
30- && dpkg --install /tmp/1c-enterprise$PLATFORM_VERSION-server_${SERVER_VERSION}_amd64.deb \
31- && dpkg --install /tmp/1c-enterprise$PLATFORM_VERSION-ws_${SERVER_VERSION}_amd64.deb \
29+ RUN dpkg --install /tmp/1c-enterprise$PLATFORM_VERSION-common_${SERVER_VERSION}_amd64.deb 2> /dev/null \
30+ && dpkg --install /tmp/1c-enterprise$PLATFORM_VERSION-server_${SERVER_VERSION}_amd64.deb 2> /dev/null \
31+ && dpkg --install /tmp/1c-enterprise$PLATFORM_VERSION-ws_${SERVER_VERSION}_amd64.deb 2> /dev/null \
3232 && rm /tmp/*.deb \
3333 && mkdir --parent /var/log/1C /home/usr1cv8/.1cv8/1C/1cv8/conf \
3434 && chown --recursive usr1cv8:grp1cv8 /var/log/1C /home/usr1cv8
You can’t perform that action at this time.
0 commit comments