Initial Project Import

This commit is contained in:
2023-02-15 20:22:07 +13:00
commit 890ec39113
5 changed files with 89 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3-slim AS build
COPY src/ /app
WORKDIR /app
RUN python3 -m pip install -r requirements.txt
VOLUME /app/data
ENV NOIP_HOST="127.0.0.1"
ENV NOIP_USERNAME=""
ENV NOIP_PASSWORD=""
CMD ["python3", "app.py"]