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 5468f809e7
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 27s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 32s
chore(deps): update debian:12.7 docker digest to 27586f4
2024-09-27 21:26:08 +00:00

10 lines
458 B
Docker

FROM rust:1.81@sha256:fcd390e0a3a6bfcf26969861efbe7b864df052aa71a361cf3cd7c5c585b1b413 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:12.7@sha256:27586f4609433f2f49a9157405b473c62c3cb28a581c413393975b4e8496d0ab
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"]