playwright / Dockerfile
and
w
691b999
raw
history blame contribute delete
236 Bytes
FROM mcr.microsoft.com/playwright:v1.41.2-jammy
WORKDIR /code
#COPY package.json ./package.json
RUN npm i [email protected]
RUN npm i web-locks
RUN npm i ws
RUN npm i user-agents
RUN npm i uuid
COPY . .
CMD [ "node", "index.mjs" ]