dns-traefik-sync/Dockerfile
root 473855e59a
Some checks are pending
build / build (push) Waiting to run
docs: README, changelog, contributing, security, deployment, operations, CI
2026-05-24 18:21:04 +01:00

17 lines
362 B
Docker

FROM debian:bookworm-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
krb5-user \
dnsutils \
ca-certificates && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY dns_sync.py .
COPY krb5.conf /etc/krb5.conf
RUN chmod +x dns_sync.py
USER nobody
ENTRYPOINT ["python3", "/app/dns_sync.py"]