Skip to content

Commit

Permalink
Images: Bump misc to Alpine 3.20.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gacko committed Jul 18, 2024
1 parent ebee23e commit f8798e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions images/ext-auth-example-authsvc/rootfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG GOLANG_VERSION

FROM golang:${GOLANG_VERSION}-alpine3.18 as builder
FROM golang:${GOLANG_VERSION}-alpine3.20 as builder
RUN mkdir /authsvc
WORKDIR /authsvc
COPY . ./
Expand All @@ -9,4 +9,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o authsvc authsvc.go
FROM gcr.io/distroless/base-debian11
COPY --from=builder /authsvc/authsvc /
EXPOSE 8080
ENTRYPOINT ["/authsvc"]
ENTRYPOINT ["/authsvc"]
4 changes: 2 additions & 2 deletions images/fastcgi-helloserver/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
ARG GOLANG_VERSION

FROM golang:${GOLANG_VERSION}-alpine3.18 as builder
FROM golang:${GOLANG_VERSION}-alpine3.20 as builder

WORKDIR /go/src/k8s.io/ingress-nginx/images/fastcgi

Expand All @@ -30,4 +30,4 @@ FROM gcr.io/distroless/static:nonroot
COPY --from=builder /go/src/k8s.io/ingress-nginx/images/fastcgi/fastcgi-helloserver /
USER nonroot:nonroot

CMD ["/fastcgi-helloserver"]
CMD ["/fastcgi-helloserver"]
4 changes: 2 additions & 2 deletions images/go-grpc-greeter-server/rootfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG GOLANG_VERSION

FROM golang:${GOLANG_VERSION}-alpine3.18 as build
FROM golang:${GOLANG_VERSION}-alpine3.20 as build

WORKDIR /go/src/greeter-server

Expand All @@ -15,4 +15,4 @@ COPY --from=build /greeter-server /

EXPOSE 50051

CMD ["/greeter-server"]
CMD ["/greeter-server"]

0 comments on commit f8798e7

Please sign in to comment.