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-02-20 12:45:52 +03:00

14 lines
218 B
Docker

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