first commit

This commit is contained in:
2023-10-18 13:41:12 +02:00
commit 70bc043600
5 changed files with 264 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.11
RUN mkdir /pyip
WORKDIR /pyip
COPY requirements.txt /pyip
RUN pip install -r requirements.txt
COPY init.py /pyip
CMD [ "python", "./init.py" ]