Add gizmo logback in local
[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
6 RUN apt-get update
7
8 # Install and setup java8
9 RUN apt-get update && apt-get install -y software-properties-common
10 ## sudo -E is required to preserve the environment. If you remove that line, it will most like freeze at this step
11 RUN sudo -E add-apt-repository ppa:openjdk-r/ppa && apt-get update && apt-get install -y openjdk-8-jdk
12 ## Setup JAVA_HOME, this is useful for docker commandline
13 ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-$(dpkg --print-architecture)
14 RUN export JAVA_HOME
15
16 # Build up the deployment folder structure
17 RUN mkdir -p $MICRO_HOME
18 RUN mkdir -p $MICRO_HOME/bundleconfig/etc
19 COPY gizmo.jar $MICRO_HOME/
20 RUN mkdir -p $BIN_HOME
21 COPY *.sh $BIN_HOME
22 COPY bundleconfig-local $MICRO_HOME/bundleconfig
23 COPY bundleconfig-local/etc/logback.xml $MICRO_HOME/bundleconfig/etc
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"]