summaryrefslogtreecommitdiffstats
path: root/mock-ves/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'mock-ves/Dockerfile')
-rw-r--r--mock-ves/Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/mock-ves/Dockerfile b/mock-ves/Dockerfile
new file mode 100644
index 0000000..32c530a
--- /dev/null
+++ b/mock-ves/Dockerfile
@@ -0,0 +1,17 @@
+FROM python:3.8-alpine
+
+COPY . /app
+WORKDIR /app
+
+# GCC for Alpine Linux in Docker
+RUN apk add build-base
+
+
+# Dependencies
+RUN pip install -r requirements.txt
+
+EXPOSE 30417
+
+ENTRYPOINT ["python"]
+
+CMD ["app/app.py"] \ No newline at end of file