fix: install npm Dockerfile

This commit is contained in:
Norbert Maciaszek
2025-11-27 23:12:10 +01:00
parent 11f120ce2f
commit b7574bc532

View File

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