14 lines
175 B
Docker
14 lines
175 B
Docker
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"] |