aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 7b4d2bc..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM maven:3-jdk-8
-RUN apt-get update && apt-get install -y sendmail
-
-WORKDIR /opt/sch
-ADD . /opt/sch
-RUN mvn clean package
-
-# TODO: This is bogus. This is simply to be used for Registrator registration.
-EXPOSE 65000
-
-COPY startSCH.sh /opt/sch
-RUN chmod +x /opt/sch/startSCH.sh
-CMD ["/opt/sch/startSCH.sh"]