tueniuu's picture
Upload 48 files
78fefe8 verified
raw
history blame
365 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system deps if needed later (optional)
RUN apt-get update && apt-get install -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "backend.app.main:app", "--host", "0.0.0.0", "--port", "7860"]