summaryrefslogtreecommitdiffstats
path: root/remote-https-runner/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'remote-https-runner/Dockerfile')
-rw-r--r--remote-https-runner/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/remote-https-runner/Dockerfile b/remote-https-runner/Dockerfile
new file mode 100644
index 0000000..2d01eac
--- /dev/null
+++ b/remote-https-runner/Dockerfile
@@ -0,0 +1,12 @@
+FROM python
+
+RUN python --version
+
+ARG configfile
+ADD requirements.txt .
+RUN pip install -r requirements.txt
+ADD ${configfile} remote-https-runner *.py ./
+ENV FLASK_APP=runner.py
+EXPOSE 5000
+
+CMD ["./remote-https-runner"] \ No newline at end of file