CoolFace
Apppublic

phasselbring/dice-scraper-browser

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM mcr.microsoft.com/playwright/python:v1.55.0-jammy2 3WORKDIR /app4 5COPY requirements.txt ./6RUN pip install --no-cache-dir -r requirements.txt && playwright install7 8COPY . .9 10EXPOSE 786011 12CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]13