diff options
author | liamfallon <liam.fallon@est.tech> | 2023-02-14 11:33:42 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2023-02-14 11:33:45 +0000 |
commit | 58b16ab91cc876129c616f9904b08e50b7f53f4f (patch) | |
tree | 10b538c37691b6143bfae63a4c6960a364c67e78 | |
parent | cc83fb1b3bce889c83dafdb48b55621ff00a4d48 (diff) |
Update Dockerfile for PF base image
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: I75e53c6646eb19cd09db7e658bb89e5a3d979c2e
Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r-- | packages/policy-gui-docker/src/main/docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/policy-gui-docker/src/main/docker/Dockerfile b/packages/policy-gui-docker/src/main/docker/Dockerfile index 12d73d2..15aa163 100644 --- a/packages/policy-gui-docker/src/main/docker/Dockerfile +++ b/packages/policy-gui-docker/src/main/docker/Dockerfile @@ -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. @@ -35,6 +35,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/gui ENV POLICY_LOGS=$POLICY_LOGS ENV POLICY_HOME=$POLICY_HOME/gui +USER root RUN mkdir -p $POLICY_HOME $POLICY_LOGS $POLICY_HOME/bin $POLICY_HOME/etc/ssl && \ chown -R policy:policy $POLICY_HOME $POLICY_LOGS |