fix: install npm Dockerfile

This commit is contained in:
Norbert Maciaszek
2025-11-27 23:09:52 +01:00
parent 11f120ce2f
commit 264bb6c066

View File

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