From d5d1f4a313a6d0f9e8c973c0c74cf30717f9d71a Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Wed, 24 Jun 2020 14:59:38 -0700 Subject: [PATCH] forgot the -y on apt-get --- dockerbuild/Dockerfile.debian-bullseye | 2 +- dockerbuild/Dockerfile.debian-buster | 2 +- dockerbuild/Dockerfile.debian-sid | 2 +- dockerbuild/Dockerfile.debian-stretch | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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; \