Spaces:
Sleeping
Sleeping
File size: 325 Bytes
97fd834 ec563fd 97fd834 ec563fd 97fd834 ec563fd 97fd834 ec563fd 97fd834 ec563fd 97fd834 c2bf6a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Base image (small and stable)
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy requirements
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy project files
COPY . .
# Run app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|