Spaces:
Sleeping
Sleeping
File size: 574 Bytes
9551697 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.10-slim
WORKDIR /code
# Устанавливаем зависимости
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Копируем весь проект в контейнер
COPY . .
# Открываем порт 7860 (это стандартный порт для Hugging Face Spaces)
EXPOSE 7860
# Запускаем Uvicorn, указывая на наше FastAPI приложение из api/index.py
CMD ["uvicorn", "api.index:app", "--host", "0.0.0.0", "--port", "7860"]
|