Spaces:
Paused
Paused
File size: 724 Bytes
ec35004 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies required by Playwright
RUN apt-get update && apt-get install -y \
wget \
gnupg \
curl \
unzip \
libnss3 \
libatk-bridge2.0-0 \
libgtk-3-0 \
libxss1 \
libasound2 \
libgbm1 \
libxshmfence1 \
libdrm2 \
fonts-liberation \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Install Playwright browsers
RUN playwright install chromium
# Copy all files
COPY . .
# Expose port
EXPOSE 7860
# Run FastAPI app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |