From 87f5017920aa0d90d64c3133419a283ea9777320 Mon Sep 17 00:00:00 2001 From: qvalentin Date: Sun, 29 Aug 2021 19:14:37 +0200 Subject: [PATCH] add dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fe3d2b3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.9 + +WORKDIR /app + +COPY src/requirements.txt ./ +RUN pip install -r requirements.txt + +COPY src /app + +EXPOSE 4876 +CMD [ "python", "server.py" ]