Spaces:
Paused
Paused
File size: 287 Bytes
0e8ec63 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM node:18-slim
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN git clone https://huggingface.co/spaces/HerzaJ/playwright .
RUN npm install
RUN npx playwright install --with-deps chromium || true
EXPOSE 7860
CMD ["node", "server.js"] |