mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 20:13:44 +02:00
forgot the -y on apt-get
This commit is contained in:
parent
1e65aad95b
commit
d5d1f4a313
4 changed files with 4 additions and 4 deletions
|
@ -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; \
|
||||
|
|
|
@ -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; \
|
||||
|
|
|
@ -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; \
|
||||
|
|
|
@ -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; \
|
||||
|
|
Loading…
Add table
Reference in a new issue