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.
2019-03-05 11:16:45 -08:00

15 lines
211 B
Docker

FROM python:3
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" ]