Spotter-VM/lxc-apps/sigmah/lxcfile

33 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-09-18 11:29:58 +02:00
IMAGE sigmah_2.0.2-190620
2019-11-30 09:59:32 +01:00
FROM alpine3.9-tomcat8.5_8.5.41-190620
2018-09-13 14:39:35 +02:00
RUN EOF
# Download Sigmah
wget https://github.com/sigmah-dev/sigmah/releases/download/v2.0.2/sigmah-2.0.2.war -O /tmp/sigmah.war
mkdir /srv/tomcat/webapps/sigmah
unzip /tmp/sigmah.war -d /srv/tomcat/webapps/sigmah
# Update Postgres JDBC driver
rm /srv/tomcat/webapps/sigmah/WEB-INF/lib/postgresql-9.1-901-1.jdbc4.jar
wget https://jdbc.postgresql.org/download/postgresql-42.2.5.jar -O /srv/tomcat/webapps/sigmah/WEB-INF/lib/postgresql-42.2.5.jar
# Remove logging config
rm /srv/tomcat/webapps/sigmah/WEB-INF/classes/logback.xml
# Change webapps ownership
chown -R tomcat:tomcat /srv/tomcat/webapps
2018-09-13 14:39:35 +02:00
# Download database files
wget https://github.com/sigmah-dev/sigmah/releases/download/v2.0.2/sigmah-MinimumDataKit-2.0.postgresql.sql -O /srv/sigmah-MinimumDataKit.sql
wget https://github.com/sigmah-dev/sigmah/releases/download/v2.0.2/sigmah-newOrganizationLaunchScript-2.0.postgresql.sql -O /srv/sigmah-newOrganizationLaunchScript.sql
2018-09-13 14:39:35 +02:00
# Cleanup
rm /tmp/sigmah.war
EOF
COPY lxc
USER 8080 8080
2018-09-13 14:39:35 +02:00
WORKDIR /srv/tomcat
2018-09-13 16:21:16 +02:00
CMD catalina.sh run