diff --git a/Dockerfile b/Dockerfile index 177b743..7275498 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file