From 8b4f7d5be5b69b0329a2f8f6f52cde22391e8f77 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Thu, 27 May 2021 09:59:58 -0700 Subject: [PATCH] Dockerfile: use apt-get (more stable) --- Dockerfile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.in b/Dockerfile.in index 38a61a5..9a21c01 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -51,14 +51,14 @@ FROM {ARG_FROM} as prep RUN echo "deb http://deb.debian.org/debian/ buster-backports main contrib" > \ /etc/apt/sources.list.d/backports.list -RUN apt update -RUN apt -y upgrade -RUN apt -y install \ +RUN apt-get update +RUN apt-get -y upgrade +RUN apt-get -y install \ ca-certificates \ coreutils \ socat \ openssh-client -RUN apt -y -t buster-backports install git +RUN apt-get -y -t buster-backports install git RUN rm -rf /var/lib/apt/lists/* # Add the default UID to /etc/passwd so SSH is satisfied.