You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
changedetection.io/playwright/Dockerfile

14 lines
257 B

FROM mcr.microsoft.com/playwright:v1.20.0-focal
WORKDIR /server
RUN npm install playwright
COPY server.js .
ENV PLAYWRIGHT_PORT=4444
ENV PLAYWRIGHT_BROWSER_TYPE=chromium
ENV PLAYWRIGHT_HEADLESS=true
EXPOSE ${PLAYWRIGHT_PORT}
CMD [ "node", "server.js" ]