diff --git a/dockerbuild/Dockerfile.debian-bullseye b/dockerbuild/Dockerfile.debian-bullseye index d572bb99d..ed7ea662a 100644 --- a/dockerbuild/Dockerfile.debian-bullseye +++ b/dockerbuild/Dockerfile.debian-bullseye @@ -6,7 +6,7 @@ ARG TARGETPLATFORM RUN apt-get update && apt-get upgrade -y && apt-get -y install build-essential curl ca-certificates devscripts dh-systemd libssl-dev RUN if test "$TARGETPLATFORM" = "linux/mips64le"; then \ - apt-get install golang; \ + apt-get install -y golang; \ else \ curl -s -k $go_pkg_url -o go.tar.gz; \ tar -C /usr/local -xzf go.tar.gz; \ diff --git a/dockerbuild/Dockerfile.debian-buster b/dockerbuild/Dockerfile.debian-buster index 46cfc3873..8c06ef974 100644 --- a/dockerbuild/Dockerfile.debian-buster +++ b/dockerbuild/Dockerfile.debian-buster @@ -6,7 +6,7 @@ ARG TARGETPLATFORM RUN apt-get update && apt-get -y install build-essential curl cmake ca-certificates devscripts dh-systemd RUN if test "$TARGETPLATFORM" = "linux/mips64le"; then \ - apt-get install golang; \ + apt-get install -y golang; \ else \ curl -s -k $go_pkg_url -o go.tar.gz; \ tar -C /usr/local -xzf go.tar.gz; \ diff --git a/dockerbuild/Dockerfile.debian-sid b/dockerbuild/Dockerfile.debian-sid index 287d5b367..a69b91e2f 100644 --- a/dockerbuild/Dockerfile.debian-sid +++ b/dockerbuild/Dockerfile.debian-sid @@ -6,7 +6,7 @@ ARG TARGETPLATFORM RUN apt-get update && apt-get upgrade -y && apt-get -y install build-essential curl ca-certificates devscripts dh-systemd RUN if test "$TARGETPLATFORM" = "linux/mips64le"; then \ - apt-get install golang; \ + apt-get install -y golang; \ else \ curl -s -k $go_pkg_url -o go.tar.gz; \ tar -C /usr/local -xzf go.tar.gz; \ diff --git a/dockerbuild/Dockerfile.debian-stretch b/dockerbuild/Dockerfile.debian-stretch index 4ea60a627..2b0fdb758 100644 --- a/dockerbuild/Dockerfile.debian-stretch +++ b/dockerbuild/Dockerfile.debian-stretch @@ -7,7 +7,7 @@ ARG TARGETPLATFORM RUN apt-get update && apt-get -y install build-essential curl ca-certificates devscripts dh-systemd libssl-dev RUN if test "$TARGETPLATFORM" = "linux/mips64le"; then \ - apt-get install golang; \ + apt-get install -y golang; \ else \ curl -s -k $go_pkg_url -o go.tar.gz; \ tar -C /usr/local -xzf go.tar.gz; \