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 8676f0567f
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 2m23s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 2m15s
chore(deps): update rust:1.88 docker digest to fb1b9e6
2025-07-01 21:01:46 +00:00

10 lines
459 B
Docker

FROM rust:1.88@sha256:fb1b9e6b795d92bd186972987462ff013f3280a19d499a181fbe82008ebf011f AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:12.11@sha256:d42b86d7e24d78a33edcf1ef4f65a20e34acb1e1abd53cabc3f7cdf769fc4082
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"]