playwright / Dockerfile
termai's picture
Update Dockerfile
bf6369f verified
raw
history blame contribute delete
225 Bytes
FROM mcr.microsoft.com/playwright:focal
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD 1
WORKDIR /app
COPY package*.json ./
RUN npm update
RUN npm install
COPY . .
RUN npx playwright install --with-deps
EXPOSE 3000
CMD ["npm", "start"]