Spaces:
Paused
Paused
File size: 306 Bytes
622d220 c753447 3da1373 f95a1f1 622d220 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
COPY pyproject.toml .
RUN pip install uv
RUN uv pip install --no-cache-dir -r requirements.txt --system
RUN apt-get update && apt-get install -y libmagic1
COPY . .
ENV PORT=8000
CMD uvicorn main:app --host 0.0.0.0 --port $PORT
|