Spaces:
Running
Running
File size: 267 Bytes
dd39c08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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" ]
RUN pip install -e BrowserGym/
|