This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-go.git
The following commit(s) were added to refs/heads/master by this push:
new 907ba06 Update net Package as temporary vulnerability fix (#190)
907ba06 is described below
commit 907ba065a6ce93626dfad49bc4b26bd4367c6cef
Author: Luke-Roy-IBM <[email protected]>
AuthorDate: Mon Mar 6 17:08:39 2023 +0100
Update net Package as temporary vulnerability fix (#190)
---
golang1.19/Dockerfile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/golang1.19/Dockerfile b/golang1.19/Dockerfile
index 74bb8f5..795a376 100644
--- a/golang1.19/Dockerfile
+++ b/golang1.19/Dockerfile
@@ -39,6 +39,9 @@ RUN echo "deb http://deb.debian.org/debian buster-backports
main contrib non-fre
# Cleanup apt data, we do not need them later on.
apt-get clean && rm -rf /var/lib/apt/lists/* &&\
go install github.com/go-delve/delve/cmd/dlv@latest &&\
+ #Update net Package as temporary vulnerability fix
+ cd /usr/local/go/src/ &&\
+ go get -u golang.org/x/[email protected] &&\
mkdir /action
#make python 3 react as python
RUN ln -s /usr/bin/python3 /usr/bin/python