Fix go version in Dockerfile

This commit is contained in:
Pavel Mezhuev 2024-08-13 21:44:12 +03:00 committed by GitHub
parent 2b3658ceed
commit 6b67239a90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
FROM golang:1.20 as builder
FROM golang:1.22 AS builder
WORKDIR /app/
COPY go.mod go.sum /app/
RUN go mod download