docker-cloudflare-ddns/Dockerfile

29 lines
793 B
Docker
Raw Permalink Normal View History

2019-03-07 21:49:06 +00:00
ARG REPO=library
FROM multiarch/qemu-user-static:4.2.0-2 as qemu-user-static
# Make sure a dummy x86_64 file exists so that the copy command doesn't error
# RUN touch /usr/bin/qemu-x86_64-fake
2021-01-21 02:21:40 +00:00
FROM ${REPO}/python:3.8-alpine
2019-03-07 21:49:06 +00:00
# Copy mutliarch file to run builds on x86_64
2019-03-07 21:49:06 +00:00
ARG ARCH=x86_64
COPY --from=qemu-user-static /usr/bin/qemu-* /usr/bin/
# COPY --from=qemu-user-static /usr/bin/qemu-${ARCH}-* /usr/bin/
2019-03-05 19:16:45 +00:00
RUN mkdir -p /src
WORKDIR /src
# Get Cloudflare example script
2021-01-21 02:14:44 +00:00
ENV CF_VERSION=2.6.0
ADD https://raw.githubusercontent.com/cloudflare/python-cloudflare/$CF_VERSION/examples/example_update_dynamic_dns.py ./update_ddns.py
RUN chmod +rx ./update_ddns.py
2019-03-05 19:16:45 +00:00
2021-01-21 01:27:33 +00:00
RUN python -m pip install --no-cache-dir cloudflare==$CF_VERSION
2019-03-05 19:16:45 +00:00
ENV DOMAIN=""
2019-06-03 23:00:31 +00:00
USER nobody
ENTRYPOINT [ "/src/update_ddns.py" ]