This commit is contained in:
2025-11-27 03:09:03 -06:00
parent d05a462c4d
commit e78a8976e9
10 changed files with 422 additions and 24 deletions

View File

@@ -1,3 +1,12 @@
FROM python:3-trixie as base
FROM python:bookworm as base
WORKDIR /app
RUN apt-get update && apt-get install cron -y
WORKDIR /app
COPY . .
COPY autopkg /etc/cron.d/
RUN pip install --no-cache-dir -r requirements.txt
CMD cron && python main.py