This is an automated email from the ASF dual-hosted git repository.
kichan pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 87821b3 Update Dockerfile (#202)
87821b3 is described below
commit 87821b39735a87fb733d3298479a97d8176b6d9a
Author: Kit Chan <[email protected]>
AuthorDate: Tue Feb 13 15:44:51 2024 -0800
Update Dockerfile (#202)
---
Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 9da22c0..b1e5dab 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -75,8 +75,8 @@ RUN apk add --no-cache --virtual .ingress-build-deps \
# Installing Golang
https://github.com/CentOS/CentOS-Dockerfiles/blob/master/golang/centos7/Dockerfile
COPY GO_VERSION /
RUN go_version=$(cat /GO_VERSION) \
- && wget https://dl.google.com/go/go${go_version}.src.tar.gz \
- && rm -rf /opt/ats/go && tar -C /opt/ats -xzf go${go_version}.src.tar.gz
&& cd /opt/ats/go/src/ && ./make.bash
+ && wget https://dl.google.com/go/go${go_version}.linux-amd64.tar.gz \
+ && rm -rf /opt/ats/go && tar -C /opt/ats -xzf
go${go_version}.linux-amd64.tar.gz
ENV PATH=${PATH}:/opt/ats/go/bin
ENV GOPATH="/opt/ats/go/bin"