Files
autopkg/Dockerfile
phantom 70f64f1766
All checks were successful
Build Docker Image / build (push) Successful in 36s
v1.0.0b2
2025-11-28 04:51:21 -06:00

11 lines
158 B
Docker

FROM python:alpine as base
WORKDIR /app
COPY . .
RUN crontab autopkg.cron
RUN pip install --no-cache-dir -r requirements.txt
CMD python main.py; crond -f