Files
primal 97fd399b4d Refactor DDNS updater: switch to Alpine, support multiple domains
- Replace golang base image with alpine for smaller footprint
- Add bash/curl dependencies explicitly
- Refactor script to support multiple domains via arrays
- Improve logging with timestamps and status messages
- Simplify docker-compose configuration
- Remove obsolete build scripts and env files

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 15:40:55 -05:00

10 lines
128 B
Docker

FROM alpine:latest
RUN apk add --no-cache bash curl
WORKDIR /app
COPY ddns.bash .
RUN chmod +x ddns.bash
CMD ["./ddns.bash"]