From 41a5e4f8184ba974e0aa95f9a35fb1096298012f Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Thu, 16 Oct 2025 13:49:22 -0700 Subject: [PATCH] Copy templates and static files into container --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7d439d1..f726e13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ FROM gcr.io/distroless/base-debian12 AS run WORKDIR / COPY --from=build /app/bin/zooid /bin/zooid +COPY templates /templates +COPY static /static USER nonroot:nonroot