Skip to content

Commit

Permalink
update go and alpine in build/ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jabdoa2 committed Oct 16, 2024
1 parent 4e5e125 commit 7e1bfa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
go-version: '1.23'
cache-dependency-path: |
go.sum
go.sum
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.22 as builder
FROM golang:1.23 as builder

ARG VERSION=undefined

Expand All @@ -19,7 +19,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -o wave -ldflags="-X main.VERSION=${VERSION}" ./cmd/manager

# Copy the controller-manager into a thin image
FROM alpine:3.11
FROM alpine:3.20
RUN apk --no-cache add ca-certificates
WORKDIR /bin
COPY --from=builder /go/src/github.com/wave-k8s/wave/wave .
Expand Down

0 comments on commit 7e1bfa8

Please sign in to comment.