playwright / Dockerfile
and
w
a975599
raw
history blame
186 Bytes
FROM mcr.microsoft.com/playwright:v1.40.0-jammy
WORKDIR /code
#COPY package.json ./package.json
RUN npm i playwright@1.40.0
RUN npm i web-locks
COPY . .
CMD [ "node", "index.mjs" ]