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 9504718d7c
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m1s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 1m4s
chore(deps): update rust:1.94 docker digest to 7e322aa
2026-03-12 23:00:52 +00:00

10 lines
458 B
Docker

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