Skip to content

Commit

Permalink
build: switch back to docker for golang:1.20
Browse files Browse the repository at this point in the history
This commit switches back to docker for
base image golang:1.20 since github actions
does not seem to be able to pull from quay
intermittently.

Signed-off-by: Rakshith R <[email protected]>
  • Loading branch information
Rakshith-R authored and mergify[bot] committed Jun 28, 2023
1 parent fcc6e23 commit 6c78a07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM quay.io/projectquay/golang:1.20 as builder
FROM golang:1.20 as builder

# Copy the contents of the repository
ADD . /workspace/go/src/github.com/csi-addons/kubernetes-csi-addons
Expand Down
2 changes: 1 addition & 1 deletion build/Containerfile.sidecar
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the sidecar binary
FROM quay.io/projectquay/golang:1.20 as builder
FROM golang:1.20 as builder

# Copy the contents of the repository
ADD . /workspace/go/src/github.com/csi-addons/kubernetes-csi-addons
Expand Down

0 comments on commit 6c78a07

Please sign in to comment.