Spaces:
Paused
Paused
File size: 327 Bytes
8b0e16d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Базовый образ Python
FROM python:3.9-slim
# Установка зависимостей
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
# Копируем приложение
COPY app.py /app/app.py
# Запускаем приложение
EXPOSE 7860
CMD ["python", "/app/app.py"] |