Convert Sparky to Spring-Boot
[aai/sparky-be.git] / sparkybe-onap-application / src / main / docker / Dockerfile
1 FROM ubuntu:14.04
2
3 ARG MICRO_HOME=/opt/app/sparky
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-amd64
14 RUN export JAVA_HOME
15
16 # Build up the deployment folder structure
17 RUN mkdir -p $MICRO_HOME
18 RUN mkdir -p $BIN_HOME
19
20 # copy swm/package/nix/dist_files/appl/sparky-be/${project.version}/ $MICRO_HOME/
21 RUN ls -la $BIN_HOME/
22
23 #RUN chmod 755 $BIN_HOME/*
24 RUN ln -s /logs $MICRO_HOME/logs
25
26 EXPOSE 8000 8000
27
28 CMD tail -F -n0 /etc/hosts
29 #CMD /opt/app/sparky/bin/start.sh
30 #CMD top