diff --git a/hello-world-app/Dockerfile b/hello-world-app/Dockerfile index 9f5e2ae..3554b7f 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.20.0 +FROM alpine:3.20.1 WORKDIR /app COPY --from=builder /app/hello-world . EXPOSE 8080