Spotter-VM/lxc-apps/dhis2/image

26 lines
611 B
Plaintext
Raw Normal View History

2020-11-09 07:45:55 +01:00
IMAGE dhis2_2.35.0-201108
FROM alpine3.12-tomcat8.5_8.5.59-201021
# https://docs.dhis2.org/master/en/implementer/html/installation.html
RUN EOF
# Download DHIS2
wget https://releases.dhis2.org/2.35/dhis2-stable-2.35.0.war -O /tmp/dhis2.war
mkdir /srv/tomcat/webapps/ROOT
unzip /tmp/dhis2.war -d /srv/tomcat/webapps/ROOT
# Change webapps ownership
chown -R tomcat:tomcat /srv/tomcat/webapps
# Create DHIS2 data directory
mkdir /opt/dhis2
chown tomcat:tomcat /opt/dhis2
# Cleanup
rm /tmp/dhis2.war
EOF
USER tomcat
WORKDIR /srv/tomcat
CMD /usr/bin/catalina.sh run