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 22cba8468f
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 3m2s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 2m7s
chore(deps): update rust:1.85 docker digest to e15c642
2025-03-04 11:27:11 +00:00

10 lines
458 B
Docker

FROM rust:1.85@sha256:e15c642b487dd013b2e425d001d32927391aca787ac582b98cca72234d466b60 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:12.9@sha256:35286826a88dc879b4f438b645ba574a55a14187b483d09213a024dc0c0a64ed
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"]