Initial project structure

This commit is contained in:
Michael Mandl 2020-05-22 16:28:09 +02:00
commit 42801e5c6d
3 changed files with 29 additions and 0 deletions

6
Dockerfile Normal file
View file

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