photoprism/docker/ddns/Dockerfile

8 lines
226 B
Docker
Raw Normal View History

FROM golang:alpine
# Q: What is this?
# A: DDNS is a personal DynDNS client for DigitalOcean, see https://github.com/skibish/ddns.
RUN go install github.com/skibish/ddns@latest
CMD ["ddns", "-conf-file", "/config/ddns.yml"]