2
0
forked from drew/smtprelay

disable VCS info in go build

- buildkit in the CI pipeline isn't liking it, don't really need it.
This commit is contained in:
2025-11-26 14:06:17 -07:00
parent b30d51e9a3
commit 55f941c7a1

View File

@@ -8,7 +8,7 @@ COPY go.mod go.sum ./
RUN go mod download RUN go mod download
COPY . . COPY . .
RUN go build . RUN go build -buildvcs=false .
# Stage 2: Package # Stage 2: Package
FROM scratch FROM scratch