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.

15 lines
218 B
Docker
Raw Normal View History

2019-03-06 11:12:14 -08:00
FROM python:3-alpine
2019-03-05 11:16:45 -08:00
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" ]