Skip to content

Commit

Permalink
install go
Browse files Browse the repository at this point in the history
  • Loading branch information
haraprasadj committed Aug 10, 2023
1 parent ce02ec3 commit f2a8f1a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "^.secrets.baseline$",
"lines": null
},
"generated_at": "2023-08-02T15:58:02Z",
"generated_at": "2023-08-10T17:44:09Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down Expand Up @@ -78,7 +78,7 @@
{
"hashed_secret": "10daf3a26c6a17242a5ab2438a12ebc8276c7603",
"is_verified": false,
"line_number": 119,
"line_number": 121,
"type": "Secret Keyword"
}
],
Expand Down
8 changes: 5 additions & 3 deletions Docker/jenkins/Jenkins-CI-Worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ RUN export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)" \
google-cloud-sdk-cbt \
kubectl

# installing go binary
COPY --from=golang:1.13-alpine /usr/local/go/ /usr/local/go/
ENV PATH="/usr/local/go/bin:${PATH}"
# install go - https://go.dev/doc/install
RUN rm -rf /usr/local/go \
&& tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz
ENV PATH="$PATH:/usr/local/go/bin"
RUN go version

#
# install docker tools:
Expand Down

0 comments on commit f2a8f1a

Please sign in to comment.