diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..98c65f2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.7 + +COPY requirements.txt . +RUN pip install -r requirements.txt + +COPY . . + +EXPOSE 1337 +CMD ["python3", "-u", "run.py"] \ No newline at end of file