Removing AJSC and moving to SpringBoot
[aai/search-data-service.git] / src / main / docker / Dockerfile
1 # FROM ubuntu:14.04
2 FROM onap/search-service:0.0.1
3
4 ARG MICRO_HOME=/opt/app/search-data-service
5 ARG BIN_HOME=$MICRO_HOME/bin
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 search-data-service* $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 EXPOSE 9509 9509
26
27 # CMD ["/opt/app/search-data-service/bin/start.sh"]
28
29
30 # COPY search-data-service-1.2.0-SNAPSHOT.jar /
31 ## Tomcat keystore will be mapped in via mounted volumes.
32 ##COPY tomcat_keystore /
33 ####COPY onap-cert.crt /
34 ####COPY client-cert-onap.p12 /
35 #COPY start.sh /
36 ## RUN chmod +x start.sh
37
38 EXPOSE 5443 5443
39 EXPOSE 8000 8000