vyos-ddclient/Containerfile
2025-08-28 17:10:50 +03:00

8 lines
250 B
Docker

# Containerfile
FROM debian:stable-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends ddclient && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["ddclient", "-foreground", "-verbose", "-file", "/etc/ddclient/ddclient.conf"]