fix: install npm Dockerfile

This commit is contained in:
Norbert Maciaszek
2025-11-27 23:14:13 +01:00
parent 11f120ce2f
commit bcb7ae01b3

View File

@@ -1,7 +1,14 @@
FROM node:22-alpine
FROM node:22-slim
WORKDIR /app
COPY package*.json .
RUN npm install
RUN npx playwright install-deps
RUN npx playwright install chromium
COPY . .
CMD ["node", "index.js"]