This repository has been archived on 2026-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cloudflare-dynamic-dns/Dockerfile
renovate ca320dd420
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m5s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 1m9s
chore(deps): update rust:1.93 docker digest to ecbe59a
2026-03-04 14:02:11 +00:00

10 lines
458 B
Docker

FROM rust:1.93@sha256:ecbe59a8408895edd02d9ef422504b8501dd9fa1526de27a45b73406d734d659 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:13.3@sha256:3615a749858a1cba49b408fb49c37093db813321355a9ab7c1f9f4836341e9db
RUN apt-get update && apt-get -y install ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/cloudflare-dynamic-dns /usr/local/bin/cloudflare-dynamic-dns
CMD ["cloudflare-dynamic-dns"]