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 86cd6f8884
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 4m14s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 3m33s
chore(deps): update debian docker tag to v12.11
2025-05-22 01:11:10 +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.11@sha256:bd73076dc2cd9c88f48b5b358328f24f2a4289811bd73787c031e20db9f97123
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"]