We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb3bc4 commit 2f4d642Copy full SHA for 2f4d642
.dockerignore
@@ -1,3 +1,5 @@
1
.vscode
2
.github
3
.env*
4
+local.go
5
+test.db
Dockerfile
@@ -32,9 +32,9 @@ COPY . ./
32
RUN make swag
33
34
# Build it
35
-RUN CGO_ENABLED=0 GOOS=linux go build -o /configuration-service
+RUN GOOS=linux go build -o /configuration-service
36
37
-FROM alpine AS production
+FROM golang:1.23 AS production
38
WORKDIR /
39
40
COPY --from=builder /configuration-service /configuration-service
0 commit comments