From a520916072e77d52f9139ccfc133b3f7e81d9ca0 Mon Sep 17 00:00:00 2001 From: Marcus Pasell <3690498+rickyrombo@users.noreply.github.com> Date: Wed, 18 Mar 2026 13:41:04 -0700 Subject: [PATCH] fix: copy swagger-ui static files into Docker image The swagger-ui directory was never copied into the final Docker image, causing /v1 to 404 on the static assets in production. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d1d408f1..57796a57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,7 @@ WORKDIR /app COPY --from=builder /app/bridge /bin/bridge COPY --from=builder /app/ddl ./ddl +COPY --from=builder /app/static/swagger-ui ./static/swagger-ui COPY --from=plans-builder /app/static/plans/dist ./static/plans/dist EXPOSE 1323