photoprism/docker/ddns/Dockerfile
Vedant Madane 858a6478db build: upgrade Go to v1.25.5
- Update go.mod to Go 1.25.0 with toolchain go1.25.5
- Update docker/ddns/Dockerfile to use golang:1.25-alpine
- Update dummy OIDC service to Go 1.25.0

Fixes #5374
2026-01-12 01:58:42 +05:30

8 lines
232 B
Docker

FROM golang:1.25-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"]