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 337d7a0d12
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m0s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 1m2s
chore(deps): update rust:1.94 docker digest to c328b17
2026-03-17 11:00:52 +00:00

10 lines
458 B
Docker

FROM rust:1.94@sha256:c328b1742cd1ecb6c7cfe4960a75e571ace675dbc65cf4c59be7b9252e9382f4 AS builder
WORKDIR /app
COPY . .
RUN cargo install --path .
FROM debian:13.4@sha256:55a15a112b42be10bfc8092fcc40b6748dc236f7ef46a358d9392b339e9d60e8
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"]