Assume yes on docker dist-update command

This commit is contained in:
David Heaps 2024-04-13 02:00:17 -07:00
parent 382274c854
commit e723931503
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ ARG FS_META_PACKAGE=freeswitch-meta-all
# make the "en_US.UTF-8" locale so freeswitch will be utf-8 enabled by default # make the "en_US.UTF-8" locale so freeswitch will be utf-8 enabled by default
RUN apt-get update -qq && \ RUN apt-get update -qq && \
apt-get dist-upgrade && \ apt-get dist-upgrade -y && \
apt-get install -y --no-install-recommends locales ca-certificates gnupg2 gcc libc-dev patch wget curl && \ apt-get install -y --no-install-recommends locales ca-certificates gnupg2 gcc libc-dev patch wget curl && \
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \ localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \
curl -o /busybox.deb http://ftp.us.debian.org/debian/pool/main/b/busybox/busybox_1.36.1-6_amd64.deb && \ curl -o /busybox.deb http://ftp.us.debian.org/debian/pool/main/b/busybox/busybox_1.36.1-6_amd64.deb && \