From 765bbb282cc3b5e5be63a470e1fe75f2ccc0a285 Mon Sep 17 00:00:00 2001 From: Paul Fariello Date: Wed, 11 Mar 2020 16:01:07 +0100 Subject: [PATCH] Add Dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f56507c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3 + +WORKDIR /app + +COPY . . +RUN pip install --no-cache-dir . + +CMD [ "python", "./idarling_server.py", "--no-ssl", "--host", "", "--port", "31013" ]