Skip to content

Commit

Permalink
[Misc] OperatorManager: Docker - latest go version used
Browse files Browse the repository at this point in the history
Use latest Go version needed by source in Docker images
  • Loading branch information
Pavan-SAP authored Jun 4, 2024
1 parent 56391c3 commit 406096d
Showing 1 changed file with 2 additions and 2 deletions.
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.1 as builder
FROM golang:1.22.3 as builder
ARG TARGETOS
ARG TARGETARCH
ENV CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH}
Expand Down Expand Up @@ -33,4 +33,4 @@ COPY chart/ chart/
COPY --from=builder /workspace/manager .
USER 65532:65532

ENTRYPOINT ["/manager"]
ENTRYPOINT ["/manager"]

0 comments on commit 406096d

Please sign in to comment.