File size: 564 Bytes
257ec40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# Stage 1: Build stage
FROM python:3.10-slim AS build
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender-dev \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
COPY . .
# Stage 2: Production stage
FROM python:3.10-slim
WORKDIR /app
# Copy installed packages from build stage
COPY --from=build /install /usr/local
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |