CheXNetDeep / Dockerfile
thehammadishaq's picture
Update Dockerfile
6cc2a0f verified
raw
history blame
377 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies first
RUN apt-get update && apt-get install -y \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /app/static
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]