diff --git a/auth_server/Dockerfile b/auth_server/Dockerfile index 816145e0..b76ae765 100644 --- a/auth_server/Dockerfile +++ b/auth_server/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20-alpine3.17 as build +FROM golang:1.21-alpine3.18 as build ARG VERSION ENV VERSION "${VERSION}" @@ -12,7 +12,7 @@ COPY . /build WORKDIR /build RUN make build -FROM alpine:3.17 +FROM alpine:3.18 COPY --from=build /build/auth_server /docker_auth/ COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ ENTRYPOINT ["/docker_auth/auth_server"]