mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
- 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
8 lines
232 B
Docker
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"]
|