first commit
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user