damage_detection_1 / Dockerfile
MUSSIE1212
fix issues
a0b1c85
raw
history blame
448 Bytes
FROM python:3.9-slim-bullseye
WORKDIR /app
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libgl1 \
libglib2.0-0 \
libsm6 \
libxrender1 \
libxext6 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --upgrade pip && \
pip install --no-cache-dir --timeout=1000 -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]