diff --git a/Dockerfile b/Dockerfile index 0d41621..4c0c352 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,19 +4,19 @@ ENV TZ=Etc/UTC RUN echo "deb mirror://mirrors.ubuntu.com/mirrors.txt $(. /etc/os-release && echo $VERSION_CODENAME) main restricted universe multiverse" > /etc/apt/sources.list && \ echo "deb mirror://mirrors.ubuntu.com/mirrors.txt $(. /etc/os-release && echo $VERSION_CODENAME) main restricted universe multiverse" >> /etc/apt/sources.list && \ echo "deb mirror://mirrors.ubuntu.com/mirrors.txt $(. /etc/os-release && echo $VERSION_CODENAME)-security main restricted universe multiverse" >> /etc/apt/sources.list && \ - echo 'APT::Get::Always-Include-Phased-Updates "true";' | tee -a /etc/apt/apt.conf.d/99-phased-updates && \ - apt-get update && \ + apt-get update -y && \ apt-get install -y --no-install-recommends ca-certificates && \ apt-get install -y --no-install-recommends openssl && \ update-ca-certificates && \ - apt-get update && \ - apt-get install -y --no-install-recommends systemd libsystemd-dev \ + echo 'APT::Get::Always-Include-Phased-Updates "true";' | tee -a /etc/apt/apt.conf.d/99-phased-updates && \ + apt-get update -y && \ + apt-get install -y --no-install-recommends systemd libsystemd-dev && \ apt-get install -y --no-install-recommends software-properties-common && \ add-apt-repository main && \ add-apt-repository universe && \ add-apt-repository restricted && \ add-apt-repository multiverse && \ - apt-get update && \ + apt-get update -y && \ apt-get install -y --no-install-recommends tzdata && \ apt-get install -y --no-install-recommends keyboard-configuration && \ apt-get install -y --no-install-recommends build-essential && \