/
O_OKIBORG
/
python-bot-greeting
Обзор
Документация
Войти
/
O_OKIBORG
/
python-bot-greeting
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Dockerfile
13 строк
174 B
Docker User
Initial Commit
13 дек 2025, 08:28
13 дек 2025, 08:28
6146413
Код
Авторство
О чём код?
FROM python:3.11-alpine WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY bot.py . ENV BOT_TOKEN="" CMD ["python", "bot.py"]