From b7574bc532e305b0bab072e6110e0ed549653f0c Mon Sep 17 00:00:00 2001 From: Norbert Maciaszek Date: Thu, 27 Nov 2025 23:12:10 +0100 Subject: [PATCH] fix: install npm Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 177b743..819ecc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file