chore: remove Go/templ legacy implementation

This commit is contained in:
2026-04-21 23:16:43 +02:00
parent 4685507519
commit 2590d60e58
54 changed files with 0 additions and 4247 deletions

View File

@@ -1,16 +0,0 @@
# Build.
FROM golang:1.24.0 AS build-stage
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . /app
RUN CGO_ENABLED=0 GOOS=linux go build -o ./entrypoint
# Deploy.
FROM gcr.io/distroless/static-debian11 AS release-stage
WORKDIR /
COPY --from=build-stage /app/entrypoint /entrypoint
COPY --from=build-stage /app/assets /assets
EXPOSE 8080
USER nonroot:nonroot
ENTRYPOINT ["/entrypoint"]