From 4fa305c38a8504ab667e698349a20093ef329046 Mon Sep 17 00:00:00 2001 From: Jasstkn Date: Thu, 16 Jun 2022 09:48:56 +0200 Subject: [PATCH] fix: build of Dockerfile.ubuntu Signed-off-by: Jasstkn --- Dockerfile.ubuntu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 21ff7cd9..fae93148 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -11,12 +11,12 @@ RUN make static-linux # ----------------------------------------------------------------------------- -FROM ubuntu:20.10 +FROM ubuntu:20.04 LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile -RUN apt update -qq && \ - apt install --no-install-recommends -y \ +RUN apt-get update && \ + apt-get install --no-install-recommends -y \ ca-certificates \ git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* @@ -60,7 +60,7 @@ ENV SOPS_VERSION="v3.7.3" RUN set -x && \ curl --retry 5 --retry-connrefused -LO https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 && \ chmod +x sops-${SOPS_VERSION}.linux.amd64 && \ - mv sops-${SOPS_VERSION}.linux.amd64 /usr/local/bin/sops \ + mv sops-${SOPS_VERSION}.linux.amd64 /usr/local/bin/sops ENV AGE_VERSION="v1.0.0" RUN set -x && \