This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
strato-ddns/Dockerfile

8 lines
190 B
Docker

FROM python:3-alpine
RUN pip install --no-cache-dir --upgrade pip
WORKDIR /app
COPY src/ ./
RUN pip install --no-cache-dir --requirement requirements.txt
CMD [ "python", "ddns_update.py" ]