Browse Source

forgot the -y on apt-get

Grant Limberg 5 years ago
parent
commit
d5d1f4a313

+ 1 - 1
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; \

+ 1 - 1
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; \

+ 1 - 1
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; \

+ 1 - 1
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; \