Split out Titan specific dependencies from core
[aai/gizmo.git] / src / main / docker / Dockerfile
1 FROM ubuntu:14.04
2
3 ARG MICRO_HOME=/opt/app/crud-api
4 ARG BIN_HOME=$MICRO_HOME/bin
5 ARG GRAPHLIB_HOME=$MICRO_HOME/graph-deps
6
7 RUN apt-get update
8
9 # Install and setup java8
10 RUN apt-get update && apt-get install -y software-properties-common
11 ## sudo -E is required to preserve the environment. If you remove that line, it will most like freeze at this step
12 RUN sudo -E add-apt-repository ppa:openjdk-r/ppa && apt-get update && apt-get install -y openjdk-8-jdk
13 ## Setup JAVA_HOME, this is useful for docker commandline
14 ENV JAVA_HOME usr/lib/jvm/java-8-openjdk-amd64
15 RUN export JAVA_HOME
16
17 # Build up the deployment folder structure
18 RUN mkdir -p $MICRO_HOME
19 ADD swm/package/nix/dist_files/appl/crud-api/* $MICRO_HOME/
20 RUN mkdir -p $GRAPHLIB_HOME
21 ADD graph-deps $GRAPHLIB_HOME
22 RUN mkdir -p $BIN_HOME
23 COPY *.sh $BIN_HOME
24 RUN chmod 755 $BIN_HOME/*
25 RUN ln -s /logs $MICRO_HOME/logs
26
27 EXPOSE 9520 9520
28
29 CMD ["/opt/app/crud-api/bin/start.sh"]