Update golang Docker tag to v1.22.2 #3

Merged
tamsin merged 1 commits from renovate/golang-1.x into trunk 2024-04-04 16:33:12 +00:00
Showing only changes of commit d48a705e9b - Show all commits

View File

@ -1,4 +1,4 @@
FROM golang:1.22.1-alpine3.19 as build
FROM golang:1.22.2-alpine3.19 as build
WORKDIR /usr/src/app
@ -9,7 +9,7 @@ COPY . .
RUN go build -v -o /tmp/app ./cmd/web
FROM golang:1.22.1-alpine3.19
FROM golang:1.22.2-alpine3.19
ENV LOGFMT=json LOGLEVEL=DEBUG
COPY --from=build /tmp/app /
EXPOSE 4000