diff options
author | 2019-10-17 12:55:19 +0530 | |
---|---|---|
committer | 2019-10-17 12:57:35 +0530 | |
commit | 0ed3574abdc6e7198075e1de0699e6fb358c2baf (patch) | |
tree | 8e1bcbcca1e12d3fa1dcd57ad1244104684292ad /src/main/docker/Dockerfile | |
parent | 897c9e987e8a2b4343282358b37be34ad68011a4 (diff) |
[AAI-2181] Change aai spike container processes to run as non-root on the host
Issue-ID: AAI-2181
Change-Id: Ifd6571190f1eaf473728010d870d2ea067dbed73
Signed-off-by: rajeevme<rajeev.mehta@amdocs.com>
Change-Id: I8026cc1962f794e110fc6c5c2e9c5075a0e28798
Diffstat (limited to 'src/main/docker/Dockerfile')
-rw-r--r-- | src/main/docker/Dockerfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/main/docker/Dockerfile b/src/main/docker/Dockerfile index f96ee9d..b45c343 100644 --- a/src/main/docker/Dockerfile +++ b/src/main/docker/Dockerfile @@ -2,6 +2,33 @@ FROM @aai.docker.namespace@/aai-common-@aai.base.image@:@aai.base.image.version@ ARG MICRO_HOME=/opt/app/spike ARG BIN_HOME=$MICRO_HOME/bin +#AAI-2181 Additional optional steps for Ubuntu +RUN if ((uname -v | grep -i "ubuntu") || ( cat /etc/*release|grep -i "ubuntu") ) ; then \ + ##################################### + #if JAVA doesnt exist then install it: + ###################################### + if type java 2>/dev/null; then \ + echo "skipping java installation"; \ + else \ + apt-get update && apt-get install -y software-properties-common; \ + ## sudo -E is required to preserve the environment. If you remove that line, it will most like freeze at this step + sudo -E add-apt-repository ppa:openjdk-r/ppa && apt-get update && apt-get install -y openjdk-8-jdk ; \ + ## Setup JAVA_HOME, this is useful for docker commandline + JAVA_HOME=usr/lib/jvm/java-8-openjdk-amd64; \ + export JAVA_HOME ; \ + fi; \ + ########################################## + #Install gosu if not present + ########################################## + if type gosu 2>/dev/null; then \ + echo "skipping gosu installation"; \ + else \ + set -x ; \ + add-apt-repository -y ppa:tianon/gosu; \ + sudo apt-get update; \ + sudo apt-get install gosu; \ + fi;\ +fi # Build up the deployment folder structure RUN mkdir -p $MICRO_HOME |