Skip to content

Commit

Permalink
go min version supported: go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
rvflash committed Nov 21, 2024
1 parent bcef929 commit 9c5a42a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Download the dependencies (mod)
FROM golang:1.20 as modules
FROM golang:1.22 as modules

## Linux dependencies.
RUN apt-get update && apt-get install -y git
Expand All @@ -9,7 +9,7 @@ RUN cd /mod && go mod download


# Build the application (app)
FROM golang:1.20 as builder
FROM golang:1.22 as builder
COPY --from=modules /go/pkg /go/pkg

## Add a non-privileged user
Expand Down

0 comments on commit 9c5a42a

Please sign in to comment.