This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Telegram-bot-schedule/Dockerfile
T
2025-09-09 01:03:00 +03:00

17 lines
257 B
Docker

FROM python:3.9-slim
RUN apt-get update && apt-get install -y cron
WORKDIR /app
# anyway copy make pip install again
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY ./app .
RUN chmod +x install.sh
CMD ["./install.sh"]