Web-Shepherd-Demo / Dockerfile
kyle8581's picture
updated docker
d4476af
raw
history blame
354 Bytes
FROM mcr.microsoft.com/playwright:v1.50.0-noble
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 . .
RUN apt-get update && apt-get install -y python3-pip
RUN python3 -m pip install -e BrowserGym/
RUN playwright install
CMD [ "node", "index.mjs" ]