This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
243 B
Docker

ARG REPO=library
FROM ${REPO}/python:3-alpine
RUN mkdir -p /src
WORKDIR /src
COPY ./requirements.txt ./
RUN pip install -r ./requirements.txt
COPY ./start.sh ./
COPY ./update_ddns.py ./update_ddns.py
ENV DOMAIN=""
CMD [ "/src/start.sh" ]