From 8fc9b8b819cdab6181c7bf08c746459e43b6383f Mon Sep 17 00:00:00 2001 From: Dmitriy Safronov <zimniy@cyberbrain.pw> Date: Sat, 22 Jan 2022 22:29:56 +0300 Subject: [PATCH] apt -> apt-get --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 804723e..74637a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ ENV GIT_SYNC_ROOT='/tmp/git' GIT_SYNC_DEST='config' GIT_SYNC_EXECHOOK_COMMAND='/ USER root:root RUN set -ex \ - && apt update -y \ - && apt install -y rsync \ - && apt clean \ + && apt-get update -y \ + && apt-get install -y rsync \ + && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* \ && chmod -Rv 0777 "${GIT_SYNC_ROOT:-/tmp/git}/" -- GitLab