aboutsummaryrefslogtreecommitdiff
path: root/ci/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'ci/Dockerfile')
-rw-r--r--ci/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/ci/Dockerfile b/ci/Dockerfile
new file mode 100644
index 0000000..48e2a24
--- /dev/null
+++ b/ci/Dockerfile
@@ -0,0 +1,13 @@
+FROM ubuntu:18.04
+
+RUN apt-get update
+RUN apt-get install -y git
+RUN apt-get install -y qt5-default qt5-qmake qtmultimedia5-dev
+RUN apt-get install -y libqt5svg5-dev
+RUN apt-get install -y libssl-dev make g++
+
+COPY compile.sh /compile.sh
+
+VOLUME /artifacts
+
+ENTRYPOINT /compile.sh \ No newline at end of file