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 c81e997c5e
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m36s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 1m9s
chore(deps): update rust docker tag to v1.94
2026-03-05 23:01:09 +00:00

10 lines
458 B
Docker

FROM rust:1.94@sha256:0e6da0c8f06f25e9591f21c0f741cd4ff1086e271c3330f29f6e4e95869c7843 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"]