d91f0e386b1ac173ff0ca461aaa181381451f1cb
[aaf/cadi.git] / sidecar / fproxy / src / main / docker / Dockerfile
1 FROM ubuntu:14.04
2
3 ARG MICRO_HOME=/opt/app/fproxy
4 ARG BIN_HOME=$MICRO_HOME/bin
5 ARG JAR_FILE=fproxy-exec.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
14 RUN sudo dpkg --purge --force-depends ca-certificates-java
15 RUN sudo apt-get install ca-certificates-java
16
17 ## Setup JAVA_HOME, this is useful for docker commandline
18 ENV JAVA_HOME usr/lib/jvm/java-8-openjdk-$(dpkg --print-architecture)
19 RUN export JAVA_HOME
20
21 # Build up the deployment folder structure
22 RUN mkdir -p $MICRO_HOME
23 COPY ${JAR_FILE} $MICRO_HOME
24 RUN mkdir -p $BIN_HOME
25 COPY *.sh $BIN_HOME
26 RUN chmod 755 $BIN_HOME/*
27 RUN ln -s /logs $MICRO_HOME/logs
28 RUN mkdir /logs
29 # Create the appuser
30 RUN groupadd -r appgroup && \
31     useradd -r -u 1001 -g appgroup appuser && \
32     chown -R appuser:appgroup $MICRO_HOME && \
33     chmod 777 /logs
34 USER appuser
35 CMD ["/opt/app/fproxy/bin/start.sh"]