From 3ac1f4165f9d48071620d5cb26586f2bda9f25d3 Mon Sep 17 00:00:00 2001 From: Asai Neko Date: Thu, 29 Jan 2026 01:35:56 +0800 Subject: [PATCH] Fix backend Containerfile Signed-off-by: Asai Neko --- container/backend.Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/backend.Containerfile b/container/backend.Containerfile index ff7f829..67984db 100644 --- a/container/backend.Containerfile +++ b/container/backend.Containerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY . /app RUN go install github.com/swaggo/swag/cmd/swag@latest RUN go mod tidy && \ - go generate . \ + go generate . && \ go build -o /app/nixcn-cms FROM docker.io/alpine:3.23