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:32:57 +03:00

15 lines
248 B
Docker

FROM python:3.9-slim
RUN apt-get update && apt-get install -y cron
# RUN 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"]