70088ae6e2c2998bb8210f44209dfef232e79096
[aai/babel.git] / src / main / docker / Dockerfile
1 FROM ubuntu:14.04
2
3 ARG MICRO_HOME=/opt/app/babel
4 ARG BIN_HOME=$MICRO_HOME/bin
5 ARG JAR_FILE=babel.jar
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 COPY ${JAR_FILE} $MICRO_HOME
20 RUN mkdir -p $BIN_HOME
21 COPY *.sh $BIN_HOME
22 RUN chmod 755 $BIN_HOME/*
23 RUN ln -s /logs $MICRO_HOME/logs
24
25 CMD ["/opt/app/babel/bin/start.sh"]