diff options
author | liamfallon <liam.fallon@est.tech> | 2023-02-14 11:33:02 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2023-02-14 11:33:06 +0000 |
commit | 1848e2af1ae165d4c81f637c72d82bcaad0b93c2 (patch) | |
tree | cfc3597431e85c42776885ea64eb794867d770eb /packages/policy-xacmlpdp-docker/src/main/docker | |
parent | d3e54ffbaa87d51a007a98d3f3cd76d5a62042c6 (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: Idcd167e57dcc6ec08c4baff05a969fc59bf65245
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'packages/policy-xacmlpdp-docker/src/main/docker')
-rw-r--r-- | packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile b/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile index c9d859d1..78276f47 100644 --- a/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile +++ b/packages/policy-xacmlpdp-docker/src/main/docker/Dockerfile @@ -2,7 +2,7 @@ # Dockerfile # ============LICENSE_START======================================================= # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. -# Modifications Copyright (C) 2022 Nordix Foundation. +# Modifications 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. @@ -42,6 +42,7 @@ ARG POLICY_LOGS=/var/log/onap/policy/pdpx ENV POLICY_LOGS=$POLICY_LOGS ENV POLICY_HOME=$POLICY_HOME/pdpx +USER root RUN apk update && \ apk add mariadb-client && \ apk add postgresql-client && \ |