We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f887ed commit 1259db8Copy full SHA for 1259db8
src/Dockerfile
@@ -1,7 +1,7 @@
1
FROM golang:1.23-alpine AS builder
2
WORKDIR /src
3
-COPY go.mod .
4
-COPY *.go .
+COPY src/go.mod .
+COPY src/*.go .
5
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go mod download
6
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o /traefik-merge traefik-merge.go
7
0 commit comments