PneumoniaAPI / Dockerfile
RichardLu's picture
Update Dockerfile
35b7ab5 verified
raw
history blame
477 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for caching
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY app.py .
COPY models/ models/
# Expose port 7860 (HF Spaces default)
EXPOSE 7860
# Run the API
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]