Merge pull request #13 from pmezhuev/patch-1

Fix go version in Dockerfile
This commit is contained in:
Norbert Varga 2024-08-16 07:52:07 +03:00 committed by GitHub
commit f9d5615320
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