From c812d70ab5de2d26c1d97e6e919e06ad8de2b8fe Mon Sep 17 00:00:00 2001 From: mathias Date: Sun, 19 Jul 2026 08:29:47 +0000 Subject: [PATCH] template: substitute placeholders --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b32c16e..ce70f67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN go install github.com/a-h/templ/cmd/templ@latest COPY go.mod ./ RUN go mod download COPY . . -RUN templ generate && CGO_ENABLED=0 go build -trimpath -ldflags='-s -w' -o /out/app ./cmd/__PROJECT_NAME__ +RUN templ generate && CGO_ENABLED=0 go build -trimpath -ldflags='-s -w' -o /out/app ./cmd/cad-atlas FROM gcr.io/distroless/static-debian12:nonroot COPY --from=build /out/app /app