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 1b08346db9
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Successful in 2m43s
Build and Push Docker Image / Build And Push Docker Image (push) Failing after 3m3s
chore(deps): update rust:1.87 docker digest to d592668
2025-06-12 00:01:57 +00:00

10 lines
459 B
Docker

FROM rust:1.87@sha256:d592668b1e652a24e86df9bbe688dbec83e0ea7013eb7d1ee7bbe61255fd1779 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"]