Spaces:
Sleeping
Sleeping
File size: 300 Bytes
5b9009e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM mcr.microsoft.com/playwright:v1.40.0-jammy
WORKDIR /app
RUN apt-get update && apt-get install -y \
python3 \
make \
g++ \
&& rm -rf /var/lib/apt/lists/*
COPY package*.json ./
RUN npm install
COPY . .
RUN npx playwright install chromium
EXPOSE 7860
CMD ["node", "index.js"] |