10 lines
257 B
Docker
10 lines
257 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache curl bash busybox tzdata
|
|
|
|
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"] |