Roll versions after J-Relase master -> 2.9.0 & trigger docs (master branch)
[nonrtric/plt/a1policymanagementservice.git] / Dockerfile
index dfcd837..a84b30c 100644 (file)
@@ -1,6 +1,7 @@
 #
 # ============LICENSE_START=======================================================
 #  Copyright (C) 2019-2023 Nordix Foundation.
+#  Copyright (C) 2024: OpenInfra Foundation Europe. All rights reserved.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -45,6 +46,7 @@ EXPOSE 8081 8433
 WORKDIR /opt/app/policy-agent
 RUN mkdir -p /var/log/policy-agent
 RUN mkdir -p /opt/app/policy-agent/etc/cert/
+RUN mkdir -p /var/policy-management-service
 EXPOSE 8081 8433
 
 ADD /config/application.yaml /opt/app/policy-agent/config/application.yaml
@@ -59,6 +61,7 @@ RUN groupadd $user && \
     useradd -r -g $group $user
 RUN chown -R $user:$group /opt/app/policy-agent
 RUN chown -R $user:$group /var/log/policy-agent
+RUN chown -R $user:$group /var/policy-management-service
 
 USER ${user}