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-12 00:21:38 +03:00

10 lines
146 B
Docker

FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY ./app .
CMD ["./install.sh"]