From 0baacb26868b6e2aa03163d2ce06e2b13bd7febe Mon Sep 17 00:00:00 2001 From: Seefs Date: Sun, 12 Oct 2025 13:05:13 +0800 Subject: [PATCH] fix: version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d835697c..89f1bc75a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN go mod download COPY . . COPY --from=builder /build/dist ./web/dist -RUN go build -ldflags "-s -w -X 'new-api/common.Version=$(cat VERSION)'" -o new-api +RUN go build -ldflags "-s -w -X 'github.com/QuantumNous/new-api/common.Version=$(cat VERSION)'" -o new-api FROM alpine