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
T
renovate 891c118caf
Build Docker Image / Explore-Gitea-Actions (push) Successful in 39s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 39s
chore(deps): update rust:1.91 docker digest to 867f1d1
2025-12-09 13:00:59 +00:00

10 lines
458 B
Docker

FROM rust:1.91@sha256:867f1d1162913c401378a8504fb17fe2032c760dc316448766f150a130204aad AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:13.2@sha256:0d01188e8dd0ac63bf155900fad49279131a876a1ea7fac917c62e87ccb2732d
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"]