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
2020-05-22 16:28:09 +02:00

7 lines
128 B
Docker

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