File size: 225 Bytes
b893962
 
 
 
bf6369f
b893962
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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"]