Files
autopkg/Dockerfile
phantom dcfb2b89d5
All checks were successful
Build Docker Image / build (push) Successful in 35s
v1.0.0b3
2025-11-29 09:52:29 -06:00

13 lines
175 B
Docker

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