|
|
FROM python:3.11-slim
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
build-essential \
|
|
|
git \
|
|
|
curl \
|
|
|
libjpeg-dev \
|
|
|
zlib1g-dev \
|
|
|
libglib2.0-0 \
|
|
|
libsm6 \
|
|
|
libxrender1 \
|
|
|
libxext6 \
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
COPY requirements.txt ./
|
|
|
|
|
|
|
|
|
RUN pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
|
|
|
|
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
EXPOSE 8000
|
|
|
|
|
|
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"] |