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 b2767d98b4
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 2m48s
chore(deps): update rust:1.87 docker digest to d0f16cc
2025-06-12 06:01:39 +00:00

10 lines
459 B
Docker

FROM rust:1.87@sha256:d0f16cc551662a283a022b50d33f1a58b113465033656938f1db480f474c5427 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:12.11@sha256:0d8498a0e9e6a60011df39aab78534cfe940785e7c59d19dfae1eb53ea59babe
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"]