From 352e2061480329f223e1557665635fe7b622e09b Mon Sep 17 00:00:00 2001 From: Callum Tait <15716903+toast-gear@users.noreply.github.com> Date: Wed, 13 Apr 2022 09:40:15 +0100 Subject: [PATCH] refactor: use apt-get instead of apt (#1342) Co-authored-by: toast-gear --- runner/Dockerfile | 6 +++--- runner/Dockerfile.dindrunner | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/runner/Dockerfile b/runner/Dockerfile index 441a9399..e839960f 100644 --- a/runner/Dockerfile +++ b/runner/Dockerfile @@ -10,10 +10,10 @@ RUN test -n "$TARGETPLATFORM" || (echo "TARGETPLATFORM must be set" && false) ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ - && apt install -y software-properties-common \ + && apt-get install -y software-properties-common \ && add-apt-repository -y ppa:git-core/ppa \ - && apt update -y \ - && apt install -y --no-install-recommends \ + && apt-get update -y \ + && apt-get install -y --no-install-recommends \ build-essential \ curl \ ca-certificates \ diff --git a/runner/Dockerfile.dindrunner b/runner/Dockerfile.dindrunner index 8b3e071c..94382cc5 100644 --- a/runner/Dockerfile.dindrunner +++ b/runner/Dockerfile.dindrunner @@ -10,10 +10,10 @@ RUN test -n "$TARGETPLATFORM" || (echo "TARGETPLATFORM must be set" && false) ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ - && apt install -y software-properties-common \ + && apt-get install -y software-properties-common \ && add-apt-repository -y ppa:git-core/ppa \ - && apt update -y \ - && apt install -y --no-install-recommends \ + && apt-get update -y \ + && apt-get install -y --no-install-recommends \ build-essential \ curl \ ca-certificates \