Skip to content

Commit 42f858a

Browse files
committed
- convert curl to wget
1 parent a945d5e commit 42f858a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM vault:1.5.3
22
LABEL maintainer="Corelight AWS Team <aws@corelight.com>"
33
LABEL description="Serverless and Vault with Terraform for CI/CD"
44

5-
RUN curl -L "https://dl.google.com/go/go1.15.1.linux-amd64.tar.gz" -o /root/go1.15.1.linux-amd64.tgz && \
6-
tar -C /usr/local -xzf /root/go1.15.1.linux-amd64.tgz
5+
RUN wget -O /root/go1.15.1.linux-amd64.tar.gz "https://dl.google.com/go/go1.15.1.linux-amd64.tar.gz" && \
6+
tar -C /usr/local -xzf /root/go1.15.1.linux-amd64.tar.gz
77

88
ENV PATH="${PATH}:/usr/local/go/bin"
99

0 commit comments

Comments
 (0)