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 0c939b989e
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 2m46s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 2m51s
chore(deps): update rust:1.87 docker digest to 5e33ae7
2025-05-16 03:13:44 +00:00

10 lines
459 B
Docker

FROM rust:1.87@sha256:5e33ae75f40bf25854fa86e33487f47075016d16726355a72171f67362ad6bf7 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:12.10@sha256:264982ff4d18000fa74540837e2c43ca5137a53a83f8f62c7b3803c0f0bdcd56
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"]