-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1310006
commit db3e0a0
Showing
4 changed files
with
28 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
.git/objects/pack | ||
.git/objects/pack/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,20 @@ | ||
FROM debian:jessie | ||
FROM tomcat:7 | ||
MAINTAINER Steve Nolen <[email protected]> | ||
# Report issues here: https://github.com/ohmage/server | ||
|
||
RUN set -x \ | ||
&& export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get update \ | ||
&& apt-get install -y openjdk-7-jdk ant curl libtcnative-1 netcat git mysql-client\ | ||
&& apt-get install --no-install-recommends -y openjdk-7-jdk ant ant-optional netcat git\ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& rm -rf /usr/local/tomcat/webapps/ROOT \ | ||
&& rm -rf /usr/local/tomcat/webapps/docs \ | ||
&& rm -rf /usr/local/tomcat/webapps/examples \ | ||
&& rm -rf /usr/local/tomcat/webapps/manager \ | ||
&& rm -rf /usr/local/tomcat/webapps/host-manager | ||
|
||
|
||
# download tomcat | ||
ENV CATALINA_HOME /usr/local/tomcat | ||
ENV PATH $CATALINA_HOME/bin:$PATH | ||
RUN mkdir -p "$CATALINA_HOME" | ||
WORKDIR $CATALINA_HOME | ||
|
||
# see https://www.apache.org/dist/tomcat/tomcat-8/KEYS | ||
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys \ | ||
05AB33110949707C93A279E3D3EFE6B686867BA6 \ | ||
07E48665A34DCAFAE522E5E6266191C37C037D42 \ | ||
47309207D818FFD8DCD3F83F1931D684307A10A5 \ | ||
541FBE7D8F78B25E055DDEE13C370389288584E7 \ | ||
61B832AC2F1C5A90F0F9B00A1C506407564C17A3 \ | ||
713DA88BE50911535FE716F5208B0AB1D63011C7 \ | ||
79F7026C690BAA50B92CD8B66A3AD3F4F22C4FED \ | ||
9BA44C2621385CB966EBA586F72C284D731FABEE \ | ||
A27677289986DB50844682F8ACB77FC2E86E29AC \ | ||
A9C5DF4D22E99998D9875A5110C01C5A2F6059E7 \ | ||
DCFD35E0BF8CA7344752DE8B6FB21E8933C60243 \ | ||
F3A04C595DB5B6A5F1ECA43E3B7BBB100D811BBE \ | ||
F7DA48BB64BCB84ECBA7EE6935CD23C10D498E23 | ||
|
||
ENV TOMCAT_MAJOR 7 | ||
ENV TOMCAT_VERSION 7.0.67 | ||
ENV TOMCAT_TGZ_URL https://www.apache.org/dist/tomcat/tomcat-$TOMCAT_MAJOR/v$TOMCAT_VERSION/bin/apache-tomcat-$TOMCAT_VERSION.tar.gz | ||
|
||
RUN set -x \ | ||
&& curl -fSL "$TOMCAT_TGZ_URL" -o tomcat.tar.gz \ | ||
&& curl -fSL "$TOMCAT_TGZ_URL.asc" -o tomcat.tar.gz.asc \ | ||
&& gpg --verify tomcat.tar.gz.asc \ | ||
&& tar -xvf tomcat.tar.gz --strip-components=1 \ | ||
&& rm bin/*.bat \ | ||
&& rm tomcat.tar.gz* \ | ||
&& rm -rf /usr/local/tomcat/webapps/ROOT \ | ||
&& rm -rf /usr/local/tomcat/webapps/docs \ | ||
&& rm -rf /usr/local/tomcat/webapps/examples \ | ||
&& rm -rf /usr/local/tomcat/webapps/manager \ | ||
&& rm -rf /usr/local/tomcat/webapps/host-manager | ||
|
||
#### download flyway (ohmage doesn't do migrations) #### | ||
WORKDIR /flyway | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters