We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e563bb commit 53d88aaCopy full SHA for 53d88aa
Dockerfile
@@ -1,7 +1,7 @@
1
# Use the official Golang image to create a build artifact.
2
# This is based on Debian and sets the GOPATH to /go.
3
<<<<<<< HEAD
4
-FROM golang:1.24.1 as builder
+FROM golang:1.24.1-alpine3.21 as builder
5
=======
6
FROM FROM golang:1.23.1 as builder
7
@@ -16,7 +16,7 @@ RUN go get -d -v ./...
16
RUN go install -v ./...
17
18
# Use a Docker multi-stage build to create a lean production image.
19
-FROM golang:1.24.1
+FROM golang:1.24.1-alpine3.21
20
COPY --from=builder /go/bin/projeto /projeto
21
22
# Run the web service on container startup.
0 commit comments