15 lines
238 B
Docker
15 lines
238 B
Docker
FROM mcr.microsoft.com/playwright:v1.47.0-jammy
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
|
|
# Install Chromium for Playwright
|
|
RUN npx playwright install chromium --with-deps
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
CMD ["node", "dist/index.js"]
|