# The latest is 7u221. An exact build can be specified FROM azul/zulu-openjdk:7u352 ARG JAVA_OPTS="-Xms2000M -Xmx2800M" ENV JAVA_OPTS=$JAVA_OPTS ENV J2SDKDIR=/usr/lib/jvm/zulu7 ENV J2REDIR=/usr/lib/jvm/zulu7/jre ENV JAVA_HOME=/usr/lib/jvm/zulu7 ENV PATH=$JAVA_HOME/bin:$JAVA_HOME/db/bin:$JAVA_HOME/jre/bin:$PATH # ENV DERBY_HOME=/docker-java-home/db ENV USER=gcube ENV GLOBUS_LOCATION=/home/gcube/gCore ENV ANT_HOME=$GLOBUS_LOCATION ENV PATH=$GLOBUS_LOCATION/bin:$PATH #ENV EXIST_HOME= #ENV GLOBUS_OPTIONS="-Dexist.home=$EXIST_HOME" ENV GLOBUS_OPTIONS="" RUN adduser --system --gecos "Gcube service user" --disabled-password --disabled-login --uid 333 --shell /usr/sbin/nologin gcube RUN apt-get update RUN apt-get install -y wget WORKDIR /home/gcube RUN cd /home/gcube && wget https://nexus.d4science.org/nexus/content/repositories/gcube-staging-gcore/org/gcube/distribution/ghn-distribution/7.0.1-4.16.0-144317/ghn-distribution-7.0.1-4.16.0-144317.tar.gz && tar zxf ghn-distribution-7.0.1-4.16.0-144317.tar.gz && rm -f ghn-distribution-7.0.1-4.16.0-144317.tar.gz && mkdir -p /home/gcube/gCore/logs /home/gcube/gCore/tmp /home/gcube/gCore/config /home/gcube/gCore/etc && chown gcube /home/gcube/gCore/logs /home/gcube/gCore/tmp /home/gcube/gCore/config /home/gcube/gCore/etc COPY src/gcube-start-container.sh /home/gcube/gCore/bin/gcore-start-container COPY src/GHNConfig.xml /home/gcube/gCore/config/GHNConfig.xml RUN chmod 755 /home/gcube/gCore/bin/gcore-start-container # Remove Resultset from distribution RUN /home/gcube/gCore/bin/gcore-undeploy-service org.gcube.common.searchservice.resultsetservice EXPOSE 8080 USER gcube ENTRYPOINT exec /home/gcube/gCore/bin/gcore-start-container # For Spring-Boot project, use the entrypoint below to reduce Tomcat startup time. #ENTRYPOINT exec java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar ansibleplaybookisregistryservice.jar