ocr / Dockerfile
fady-50's picture
Upload 3 files
1eadd76 verified
Raw
History Blame Contribute Delete
415 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy model files and app
COPY . .
# Expose port
EXPOSE 7860
# Run the app
CMD ["python", "main.py"]