photoprism/docker/ddns/Dockerfile
Michael Mayer 5bda752118 Build: Add shared .telemetry file to opt out of CLI telemetry
Signed-off-by: Michael Mayer <michael@photoprism.app>
2026-04-24 16:42:21 +02:00

10 lines
255 B
Docker

FROM golang:1.22-alpine
ENV DO_NOT_TRACK=true
# 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"]