diff --git a/hello-world-app/Dockerfile b/hello-world-app/Dockerfile index 6d7e37f..41f8cdd 100644 --- a/hello-world-app/Dockerfile +++ b/hello-world-app/Dockerfile @@ -2,7 +2,7 @@ FROM golang:latest AS builder COPY ./hello-world.go . RUN go env -w CGO_ENABLED=0 GO111MODULE=off && go build -o /app/hello-world -FROM alpine:3.19.0 +FROM alpine:3.19.1 WORKDIR /app COPY --from=builder /app/hello-world . EXPOSE 8080