mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-01 17:52:40 +00:00
rootfs.sh: enable curl use http_proxy
This patch added -x option to curl: -x uses the http_proxy settings to download golang binary behind the firewall Fixes: #193 Signed-off-by: Leno Hou <lenohou@gmail.com>
This commit is contained in:
parent
bdec513ca4
commit
8599143069
@ -140,8 +140,10 @@ generate_dockerfile()
|
||||
|
||||
[ -n "$http_proxy" ] && readonly set_proxy="RUN sed -i '$ a proxy="$http_proxy"' /etc/dnf/dnf.conf /etc/yum.conf; true"
|
||||
|
||||
curlOptions=("-OL")
|
||||
[ -n "$http_proxy" ] && curlOptions+=("-x $http_proxy")
|
||||
readonly install_go="
|
||||
RUN cd /tmp ; curl -OL https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${goarch}.tar.gz
|
||||
RUN cd /tmp ; curl ${curlOptions[@]} https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${goarch}.tar.gz
|
||||
RUN tar -C /usr/ -xzf /tmp/go${GO_VERSION}.linux-${goarch}.tar.gz
|
||||
ENV GOROOT=/usr/go
|
||||
ENV PATH=\$PATH:\$GOROOT/bin:\$GOPATH/bin
|
||||
|
Loading…
Reference in New Issue
Block a user