Files
adguard-cidre/Dockerfile
T
Djeex bb13e398df
CI / build-and-scan (pull_request) Successful in 24s
Update python Docker tag to v3.14
2026-08-22 10:38:37 +02:00

15 lines
322 B
Docker

FROM python:3.14-alpine
ENV TZ=Europe/Paris
RUN apk add --no-cache tzdata curl \
&& cp /usr/share/zoneinfo/$TZ /etc/localtime \
&& echo $TZ > /etc/timezone \
&& pip install --no-cache-dir requests pyyaml schedule
WORKDIR /app
COPY blocklist_scheduler.py .
ENTRYPOINT ["python3", "blocklist_scheduler.py"]