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 e116fbf4d0
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m3s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 1m4s
chore(deps): update rust:1.94 docker digest to f17e723
2026-03-22 20:00:55 +00:00

10 lines
458 B
Docker

FROM rust:1.94@sha256:f17e723020f87c1b4ac4ff6d73c9dfbb7d5cb978754c76641e47337d65f61e12 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:13.4@sha256:55a15a112b42be10bfc8092fcc40b6748dc236f7ef46a358d9392b339e9d60e8
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"]