Scraping-tool / Dockerfile
Sinketji's picture
Create Dockerfile
ec35004 verified
raw
history blame contribute delete
724 Bytes
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"]