8 lines
250 B
Docker
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"]
|