Fixing the docker jenkins job
[aai/search-data-service.git] / src / main / docker / Dockerfile
1 FROM ubuntu:14.04
2
3 ARG MICRO_HOME=/opt/app/search-data-service
4 ARG BIN_HOME=$MICRO_HOME/bin
5
6 ## Install and setup java8
7 RUN apt-get update && apt-get install -y software-properties-common
8 ## sudo -E is required to preserve the environment. If you remove that line, it will most like freeze at this step
9 RUN sudo -E add-apt-repository ppa:openjdk-r/ppa && apt-get update && apt-get install -y openjdk-8-jdk
10 ## Setup JAVA_HOME, this is useful for docker commandline
11 ENV JAVA_HOME usr/lib/jvm/java-8-openjdk-amd64
12 RUN export JAVA_HOME
13
14 # Build up the deployment folder structure
15 RUN mkdir -p $MICRO_HOME
16 RUN mkdir -p $MICRO_HOME/bundleconfig/etc
17 ADD search-data-service* $MICRO_HOME/
18 RUN mkdir -p $BIN_HOME
19 COPY *.sh $BIN_HOME
20 COPY bundleconfig-local $MICRO_HOME/bundleconfig
21 COPY bundleconfig-local/etc/logback.xml $MICRO_HOME/bundleconfig/etc
22 RUN chmod 755 $BIN_HOME/*
23 RUN ln -s /logs $MICRO_HOME/logs
24
25 EXPOSE 9509 9509
26
27 CMD ["/opt/app/search-data-service/bin/start.sh"]