From a67fc15500480e6601e0abc8781835aecfabdb65 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Thu, 21 Apr 2022 23:23:55 +0200 Subject: [PATCH] added EXPOSE to Dockerfile --- Dockerfile | 3 ++- pom.xml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6a66cd..97b55f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,4 +18,5 @@ RUN echo '{"locations":{"database":"/data/widerhall.sqlite3","configuration":"/d # get JQUERY RUN wget https://code.jquery.com/jquery-3.6.0.min.js -O static/jquery-3.6.0.min.js -CMD java -jar widerhall.jar \ No newline at end of file +EXPOSE 80 +CMD java -jar widerhall.jar diff --git a/pom.xml b/pom.xml index 24df9ef..b80e164 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.example Widerhall - 0.2.8 + 0.2.9