-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathDockerfile
25 lines (17 loc) · 951 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM maven:3.6.3-openjdk-11-slim as build
LABEL COMPANY="Open Foris"
LABEL MAINTAINER="[email protected]"
LABEL APPLICATION="Open Foris Collect"
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y git
RUN mvn package
FROM tomcat:9.0.65-jdk11-openjdk-slim
COPY --from=build /app/collect-webapp/target/collect.war /usr/local/tomcat/webapps/
COPY collect-installation/docker/tomcat/conf/Catalina/localhost/collect.xml $CATALINA_HOME/conf/Catalina/localhost/collect.xml
COPY collect-installation/docker/tomcat/bin/setenv.sh $CATALINA_HOME/bin/setenv.sh
RUN chmod +x $CATALINA_HOME/bin/setenv.sh
ADD https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.46.1.0/sqlite-jdbc-3.46.1.0.jar $CATALINA_HOME/lib/
ADD https://repo1.maven.org/maven2/org/postgresql/postgresql/42.7.4/postgresql-42.7.4.jar $CATALINA_HOME/lib/
ADD https://repo1.maven.org/maven2/com/h2database/h2/2.3.232/h2-2.3.232.jar $CATALINA_HOME/lib/
EXPOSE 8080