Create Dockerfile

This commit is contained in:
kolyanok 2022-03-29 16:13:43 +03:00
parent 33acd90203
commit 5ed833ccdf

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3
ADD blockcheck.py /
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
CMD [ "python", "./blockcheck.py" ]