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 \