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 de2b42cb4d
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 2m49s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 2m56s
chore(deps): update rust:1.86 docker digest to f2b92e8
2025-04-30 03:01:50 +00:00

10 lines
459 B
Docker

FROM rust:1.86@sha256:f2b92e819862d053024dcf28af317b7944546bd39e87e494414bb7c1c23cd0e9 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:12.10@sha256:264982ff4d18000fa74540837e2c43ca5137a53a83f8f62c7b3803c0f0bdcd56
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"]