Spaces:
Running
Running
File size: 260 Bytes
61c2768 98e9a75 ed1955d 98e9a75 45bc5e7 fe2c22b 9609abc 61c2768 98e9a75 915016a |
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 express [email protected] body-parser cors
RUN npm i web-locks
RUN npm i ws
RUN npm i user-agents
RUN npm i uuid
COPY . .
CMD [ "node", "index.js" ]
|