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 ed9bf87c43
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 2m35s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 2m16s
chore(deps): update rust:1.89 docker digest to 57407b3
2025-09-16 21:01:09 +00:00

10 lines
458 B
Docker

FROM rust:1.89@sha256:57407b378b2b6e07b48a6135a20c87cc22ea6e249c0acf6cb1833ead3cf116e9 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:13.1@sha256:833c135acfe9521d7a0035a296076f98c182c542a2b6b5a0fd7063d355d696be
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"]