equation-solver / Dockerfile
kbsss's picture
Upload folder using huggingface_hub
c10f086 verified
raw
history blame contribute delete
492 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies for OpenCV
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY app.py .
COPY model.h5 .
COPY label_encoder.pkl .
# Expose Gradio port
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]