aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFiete Ostkamp <fiete.ostkamp@telekom.de>2024-01-29 17:17:21 +0000
committerGerrit Code Review <gerrit@onap.org>2024-01-29 17:17:21 +0000
commit5d02099347bbd6beb81de7e49ffe349c36caff09 (patch)
tree7f93961616dd209fe758d0e51b9b0af20671e94c
parent3c8b8cb659b094b1b5b7f7e99218146de3f25942 (diff)
parentc65f5a42c28effc2f3d866dde7683a488df928b3 (diff)
Merge "Revert "Update aai-common-alpine base image in resources""
-rw-r--r--README.md7
-rw-r--r--aai-resources/pom.xml2
-rw-r--r--aai-resources/src/main/docker/Dockerfile6
3 files changed, 5 insertions, 10 deletions
diff --git a/README.md b/README.md
index 554c020..941a734 100644
--- a/README.md
+++ b/README.md
@@ -48,10 +48,3 @@ Integration tests are located in `it` directory, and disabled by default in the
`<skipITs>true</skipITs>`
As a naming convention, All integration test classes should end with `IT`, and will be executed by changing the `skipITs` value in pom file, or through the command line `-DskipITs=false`
-
-## Docker
-
-To build the docker image, the maven `docker` profile can be used:
-```sh
-JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 mvn clean install -P docker -DskipTests
-``` \ No newline at end of file
diff --git a/aai-resources/pom.xml b/aai-resources/pom.xml
index 0ff0f25..8bc71c7 100644
--- a/aai-resources/pom.xml
+++ b/aai-resources/pom.xml
@@ -41,7 +41,7 @@
<docker.push.registry>localhost:5000</docker.push.registry>
<aai.docker.version>1.0.0</aai.docker.version>
<aai.base.image>alpine</aai.base.image>
- <aai.base.image.version>1.9.6</aai.base.image.version>
+ <aai.base.image.version>1.6.0</aai.base.image.version>
<netty.handler.version>4.1.63.Final</netty.handler.version>
<netty.version>4.1.63.Final</netty.version>
diff --git a/aai-resources/src/main/docker/Dockerfile b/aai-resources/src/main/docker/Dockerfile
index f8b9820..be115e7 100644
--- a/aai-resources/src/main/docker/Dockerfile
+++ b/aai-resources/src/main/docker/Dockerfile
@@ -1,8 +1,6 @@
FROM @aai.docker.namespace@/aai-common-@aai.base.image@:@aai.base.image.version@
-USER root
RUN mkdir -p /opt/aaihome/aaiadmin /opt/aai/logroot/AAI-RES /opt/bulkprocess_load
-RUN chown -R aaiadmin:aaiadmin /opt/aaihome /opt/aai/logroot/AAI-RES /opt/bulkprocess_load
VOLUME /tmp
@@ -17,6 +15,10 @@ ENV AAI_BUILD_VERSION @aai.docker.version@
# 8447 is the important one to be used
EXPOSE 8447
+RUN groupadd aaiadmin -g 1000
+
+RUN adduser -u 1000 -h /opt/aaihome/aaiadmin -S -D -G aaiadmin -s /bin/bash aaiadmin
+
# Add the proper files into the docker image from your build
WORKDIR /opt/app/aai-resources