25 lines
676 B
Docker
25 lines
676 B
Docker
FROM python:3.11-slim
|
|
|
|
# Install required utilities
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
cron \
|
|
tzdata \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy scripts
|
|
COPY update-blocklist.py /usr/local/bin/update-blocklist.py
|
|
COPY entrypoint.py /usr/local/bin/entrypoint.py
|
|
|
|
# Make scripts executable
|
|
RUN chmod +x /usr/local/bin/update-blocklist.py /usr/local/bin/entrypoint.py
|
|
|
|
# Set default timezone (can be overridden with TZ env var)
|
|
ENV TZ=UTC
|
|
|
|
# Configure timezone (tzdata) — important for /usr/share/zoneinfo/*
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
# Set entrypoint
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.py"]
|