Skip to content

Commit

Permalink
Start of Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chubing committed Jul 31, 2017
1 parent 65eee35 commit fde8717
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
FROM centos:centos7

########################
### VERSION SETTINGS ###
########################
#
##java
ENV JAVA_VERSION=8u144
ENV BUILD_VERSION=b11
ENV JAVA_BUNDLE_ID=d54c1d3a095b4ff2b6607d096fa80163
##tomcat
ENV TOMCAT_MAJOR=8
ENV TOMCAT_VERSION="8.5.12"

##shib-idp
ENV VERSION=2.3.0
##TIER
ENV TIERVERSION=17040

##################
### OTHER VARS ###
##################
#
#global
ENV IMAGENAME=shibboleth_idp
ENV MAINTAINER=tier
#java
ENV JAVA_HOME=/usr/java/latest
ENV JAVA_OPTS=-Xmx3000m -XX:MaxPermSize=256m
#tomcat
ENV CATALINA_HOME=/usr/local/tomcat
ENV TOMCAT_TGZ_URL=https://www.apache.org/dist/tomcat/tomcat-$TOMCAT_MAJOR/v$TOMCAT_VERSION/bin/apache-tomcat-$TOMCAT_VERSION.tar.gz
ENV PATH=$CATALINA_HOME/bin:$JAVA_HOME/bin:$PATH
#shib-idp

#set labels
LABEL Vendor="Internet2"
LABEL ImageType="Grouper Release"
LABEL ImageName=$imagename
LABEL ImageOS=centos7
LABEL Version=$VERSION

0 comments on commit fde8717

Please sign in to comment.