Update Dockerfile for PF base image 79/133279/1
authorliamfallon <liam.fallon@est.tech>
Tue, 14 Feb 2023 11:34:52 +0000 (11:34 +0000)
committerliamfallon <liam.fallon@est.tech>
Tue, 14 Feb 2023 11:34:56 +0000 (11:34 +0000)
The Policy Framework base image run under the "onap" user rather than
under the "root" user. This means that root access has to be enabled in
child Dockerfiles for configuraiton that requires root access.

Root access is turned off again later in the Dockerfile so that the
image will run under another user.

Issue-ID: POLICY-4558
Change-Id: Idf5c1565fd74b17bcabc137f5292ebc097c3d246
Signed-off-by: liamfallon <liam.fallon@est.tech>
packages/policy-clamp-docker/src/main/docker/A1pmsParticipant.Dockerfile
packages/policy-clamp-docker/src/main/docker/AcmRuntime.Dockerfile
packages/policy-clamp-docker/src/main/docker/ElementParticipant.Dockerfile
packages/policy-clamp-docker/src/main/docker/HttpParticipant.Dockerfile
packages/policy-clamp-docker/src/main/docker/KubernetesParticipant.Dockerfile
packages/policy-clamp-docker/src/main/docker/PolicyParticipant.Dockerfile

index 9f39310..ff08d8e 100755 (executable)
@@ -1,6 +1,6 @@
 #-------------------------------------------------------------------------------
 # ============LICENSE_START=======================================================
-#  Copyright (C) 2021-2022 Nordix Foundation.
+#  Copyright (C) 2021-2023 Nordix Foundation.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/a1pms-participant
 ENV POLICY_LOGS=$POLICY_LOGS
 ENV POLICY_HOME=$POLICY_HOME/clamp
 
+USER root
 RUN mkdir -p $POLICY_LOGS $POLICY_HOME && \
     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
 
index 3f36f3d..c77f48b 100644 (file)
@@ -1,6 +1,6 @@
 #-------------------------------------------------------------------------------
 # ============LICENSE_START=======================================================
-#  Copyright (C) 2021-2022 Nordix Foundation.
+#  Copyright (C) 2021-2023 Nordix Foundation.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/policy-clamp-runtime-acm
 ENV POLICY_LOGS=$POLICY_LOGS
 ENV POLICY_HOME=$POLICY_HOME/clamp
 
+USER root
 RUN mkdir -p $POLICY_HOME $POLICY_LOGS && \
     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
 
index 0a92cee..adfa00d 100644 (file)
@@ -1,6 +1,6 @@
 #-------------------------------------------------------------------------------
 # ============LICENSE_START=======================================================
-#  Copyright (C) 2022 Nordix Foundation.
+#  Copyright (C) 2022-2023 Nordix Foundation.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/element-participant
 ENV POLICY_LOGS=$POLICY_LOGS
 ENV POLICY_HOME=$POLICY_HOME/clamp
 
+USER root
 RUN mkdir -p $POLICY_LOGS $POLICY_HOME && \
     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
 
index 17dccaa..720927b 100644 (file)
@@ -1,6 +1,6 @@
 #-------------------------------------------------------------------------------
 # ============LICENSE_START=======================================================
-#  Copyright (C) 2021-2022 Nordix Foundation.
+#  Copyright (C) 2021-2023 Nordix Foundation.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/http-participant
 ENV POLICY_LOGS=$POLICY_LOGS
 ENV POLICY_HOME=$POLICY_HOME/clamp
 
+USER root
 RUN mkdir -p $POLICY_LOGS $POLICY_HOME && \
     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
 
index 1395a67..72250e8 100644 (file)
@@ -1,6 +1,6 @@
 #-------------------------------------------------------------------------------
 # ============LICENSE_START=======================================================
-#  Copyright (C) 2021-2022 Nordix Foundation.
+#  Copyright (C) 2021-2023 Nordix Foundation.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/k8s-participant
 ENV POLICY_LOGS=$POLICY_LOGS
 ENV POLICY_HOME=$POLICY_HOME/clamp
 
+USER root
 RUN mkdir -p $POLICY_HOME $POLICY_LOGS && \
     chown -R policy:policy $POLICY_HOME $POLICY_LOGS
 
index fe08785..c82754b 100644 (file)
@@ -1,6 +1,6 @@
 #-------------------------------------------------------------------------------
 # ============LICENSE_START=======================================================
-#  Copyright (C) 2021-2022 Nordix Foundation.
+#  Copyright (C) 2021-2023 Nordix Foundation.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -40,6 +40,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/pf-participant
 ENV POLICY_LOGS=$POLICY_LOGS
 ENV POLICY_HOME=$POLICY_HOME/clamp
 
+USER root
 RUN mkdir -p $POLICY_HOME $POLICY_LOGS && \
     chown -R policy:policy $POLICY_HOME $POLICY_LOGS