Skip to content

Commit

Permalink
bump to golang 1.21 and alpine 3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
techknowlogick authored Sep 10, 2023
1 parent a900f2f commit cf48b59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -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}"
Expand All @@ -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"]
Expand Down

0 comments on commit cf48b59

Please sign in to comment.