First commit

This commit is contained in:
2025-05-31 15:48:14 +00:00
commit 8bec552adc
7 changed files with 190 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM alpine:latest
RUN apk add --no-cache curl bash busybox-cron
COPY update-blocklist.sh /usr/local/bin/update-blocklist.sh
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /usr/local/bin/update-blocklist.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]