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 84b3e8cf38
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m40s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 7m13s
chore(deps): update rust:1.94 docker digest to f2a0f2b
2026-03-27 05:08:01 +00:00

10 lines
458 B
Docker

FROM rust:1.94@sha256:f2a0f2b3529c9bbbf5479d131611451a3cc3956d9a11374d6d4ba96f059c1dce 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"]