Spaces:
Running
Running
File size: 236 Bytes
61c2768 98e9a75 ed1955d 98e9a75 691b999 fe2c22b 9609abc 61c2768 98e9a75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM mcr.microsoft.com/playwright:v1.41.2-jammy
WORKDIR /code
#COPY package.json ./package.json
RUN npm i playwright@1.41.2
RUN npm i web-locks
RUN npm i ws
RUN npm i user-agents
RUN npm i uuid
COPY . .
CMD [ "node", "index.mjs" ]
|