summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/Dockerfile
diff options
context:
space:
mode:
authorJoseph O'Leary <joseph.o.leary@est.tech>2020-02-12 10:19:49 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-12 10:19:49 +0000
commit296f6a9817c28d9453fe697ae3dae6af37610eec (patch)
tree8162891083c08fe6a7bfadd28b6bbc845246102f /components/pm-subscription-handler/Dockerfile
parentbd620f2f55d10fc256efeae8429947ce29337afb (diff)
parent8b3fc62050a344fe9a9c8909e4c672cb9aa3281d (diff)
Merge "Adding DB Init and setup"
Diffstat (limited to 'components/pm-subscription-handler/Dockerfile')
-rw-r--r--components/pm-subscription-handler/Dockerfile10
1 files changed, 4 insertions, 6 deletions
diff --git a/components/pm-subscription-handler/Dockerfile b/components/pm-subscription-handler/Dockerfile
index 4f03a306..bb3f63c6 100644
--- a/components/pm-subscription-handler/Dockerfile
+++ b/components/pm-subscription-handler/Dockerfile
@@ -1,5 +1,5 @@
# ============LICENSE_START===================================================
-# Copyright (C) 2019 Nordix Foundation.
+# Copyright (C) 2020 Nordix Foundation.
# ============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -24,15 +24,13 @@ ENV PMSHUSER=pmsh \
# set PATH & PYTHONPATH vars
PATH=/usr/local/lib/python3.7/bin:$PATH:$APPDIR/bin \
PYTHONPATH=/usr/local/lib/python3.7/site-packages:./mod:./:$PYTHONPATH:$APPDIR/bin \
- REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
+ REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt \
+ LOGS_PATH="/var/log/ONAP/dcaegen2/services/pmsh"
WORKDIR $APPDIR
# add non root user & group
-RUN addgroup --system $PMSHUSER && adduser --ingroup $PMSHUSER --system $PMSHUSER && \
- # create logs dir and change permissions
- mkdir -p /var/log/ONAP/$PMSHUSER/logs && \
- chmod a+w /var/log/ONAP/$PMSHUSER/logs
+RUN addgroup --system $PMSHUSER && adduser --ingroup $PMSHUSER --system $PMSHUSER
COPY setup.py ./
COPY requirements.txt ./