summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/Dockerfile
diff options
context:
space:
mode:
authorefiacor <fiachra.corcoran@est.tech>2023-02-14 18:43:24 +0000
committerefiacor <fiachra.corcoran@est.tech>2023-02-15 10:29:26 +0000
commitf0fb309e5bcdb31d86c51e56205f6d977dcb9fac (patch)
treeebee1ccf63487e41928e62b9840c2c0db6d050b5 /components/pm-subscription-handler/Dockerfile
parent24d5996b9793250276690415bbf365801b88593d (diff)
[PMSH] Fix dependencies and build script2.2.3-pmsh
onap-gerrit-review: -current-copyright-not-in-all-files Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: Ib94ea16c95e741b9882731f2cb880b67661166b8 Issue-ID: DCAEGEN2-3353
Diffstat (limited to 'components/pm-subscription-handler/Dockerfile')
-rw-r--r--components/pm-subscription-handler/Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/pm-subscription-handler/Dockerfile b/components/pm-subscription-handler/Dockerfile
index 9e3ebfe8..612b744f 100644
--- a/components/pm-subscription-handler/Dockerfile
+++ b/components/pm-subscription-handler/Dockerfile
@@ -1,5 +1,5 @@
# ============LICENSE_START===================================================
-# Copyright (C) 2020 Nordix Foundation.
+# Copyright (C) 2020-2023 Nordix Foundation.
# Copyright 2020 Deutsche Telekom. All rights reserved.
# ============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +17,7 @@
# SPDX-License-Identifier: Apache-2.0
# ============LICENSE_END=====================================================
-FROM nexus3.onap.org:10001/onap/integration-python:8.0.0 as build
+FROM nexus3.onap.org:10001/onap/integration-python:10.1.0 as build
LABEL maintainer="lego@est.tech"
USER root
@@ -32,7 +32,7 @@ COPY requirements.txt ./
RUN pip install --prefix /opt -r requirements.txt --no-cache-dir
# Second stage
-FROM nexus3.onap.org:10001/onap/integration-python:8.0.0
+FROM nexus3.onap.org:10001/onap/integration-python:10.1.0
COPY --from=build /opt /opt
@@ -43,7 +43,7 @@ ARG group=onap
# set PATH & PYTHONPATH vars
ENV APPDIR="/opt/app/pmsh" \
LD_LIBRARY_PATH=/opt/lib \
- PYTHONPATH=${APPDIR}/mod:/opt/lib/python3.9/site-packages \
+ PYTHONPATH=${APPDIR}/mod:/opt/lib/python3.10/site-packages \
PATH=$PATH:${APPDIR}/bin \
LOGS_PATH="/var/log/ONAP/dcaegen2/services/pmsh" \
LOGGER_CONFIG="/opt/app/pmsh/log_config.yaml"