aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/dash/Dockerfile')
-rw-r--r--resources/tools/dash/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/resources/tools/dash/Dockerfile b/resources/tools/dash/Dockerfile
new file mode 100644
index 0000000000..cd7eab7772
--- /dev/null
+++ b/resources/tools/dash/Dockerfile
@@ -0,0 +1,12 @@
+ARG PYTHON_VERSION=3.10
+FROM python:${PYTHON_VERSION}-buster
+
+WORKDIR /app
+
+COPY ./app/requirements.txt .
+
+RUN pip3 install -r requirements.txt
+
+EXPOSE 5000
+
+CMD [ "uwsgi", "app.ini" ] \ No newline at end of file