mirror of
https://github.com/DerrtSML/qbittorent_bot.git
synced 2026-08-27 13:57:55 +03:00
Add files via upload
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
# Используем официальный образ Python
|
||||
FROM python:3.10-slim-buster
|
||||
|
||||
# Устанавливаем рабочую директорию
|
||||
WORKDIR /app
|
||||
|
||||
# Копируем файл зависимостей и устанавливаем их
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Копируем остальные файлы приложения
|
||||
COPY . .
|
||||
|
||||
# Команда для запуска приложения
|
||||
CMD ["python", "bot.py"]
|
||||
Reference in New Issue
Block a user