This commit is contained in:
2025-02-20 12:32:57 +03:00
parent c22085eeb3
commit cb4300c801
6 changed files with 138 additions and 134 deletions
+5
View File
@@ -1,5 +1,8 @@
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
@@ -7,4 +10,6 @@ RUN pip install -r requirements.txt
COPY ./app .
RUN chmod +x install.sh
CMD ["./install.sh"]