From 99fcf11b8798fffc3907652327130e2b90cfefc6 Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 8 Jul 2026 01:06:25 +0000 Subject: [PATCH] Keep debug scripts out of browser install layer --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a63c2e1..30b063f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,11 +25,11 @@ RUN apt-get update \ COPY --from=build /app/node_modules ./node_modules COPY --from=build /app/dist ./dist COPY --from=build /app/dist-client ./dist-client -COPY scripts ./scripts COPY package.json ./ RUN ./node_modules/.bin/playwright install --with-deps --only-shell chromium \ && npm cache clean --force \ && rm -rf /var/lib/apt/lists/* /tmp/* +COPY scripts ./scripts EXPOSE 8080 CMD ["node", "dist/server.js"]