1
0
Fork 0

Add files via upload :trollface:

This commit is contained in:
Arthur K. 2025-11-04 07:59:41 +03:00
commit a9cfc9b522
Signed by: wzray
GPG key ID: B97F30FDC4636357
9 changed files with 425 additions and 0 deletions

16
Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM python:3.13-alpine
# crond refuses to stop on SIGINT for some reason
STOPSIGNAL TERM
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY crontab /etc/crontabs/root
COPY main.py /app/main.py
COPY user.session /app/user.session
CMD ["crond", "-f", "-l2"]