We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf94f2c commit ce3756bCopy full SHA for ce3756b
Dockerfile
@@ -1,10 +1,10 @@
1
-FROM golang:1.22 as builder
+FROM golang:1.23 AS builder
2
RUN mkdir /build
3
COPY . /build/
4
WORKDIR /build
5
RUN CGO_ENABLED=0 GOOS=linux go build -buildvcs=false -a -o go-codewars .
6
7
-FROM golang:1.22-alpine
+FROM golang:1.23-alpine
8
COPY --from=builder /build/go-codewars .
9
COPY --from=builder /build/routes/assets ./routes/assets
10
EXPOSE 3000
go.mod
@@ -1,5 +1,5 @@
module dinifarb/codewars_readme_stats
-go 1.22
+go 1.23
require github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b
0 commit comments