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"]