Files
autopkg/Dockerfile
phantom 7f7d671fb1
Some checks failed
Build Docker Image / build (push) Failing after 15s
Switch base to alpine
2025-11-27 06:48:57 -06:00

13 lines
204 B
Docker

FROM python:alpine as base
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