diff --git a/openshift/backend/Dockerfile b/openshift/backend/Dockerfile index 8a32f198..a69c07b8 100644 --- a/openshift/backend/Dockerfile +++ b/openshift/backend/Dockerfile @@ -65,6 +65,7 @@ RUN $DNF_CMD install \ # Install locally available python wheels only. # Any new/updated dependencies should be installed via rpm. RUN pip-3 install --no-deps /src/dist/*.whl +RUN mkdir /etc/mbs-messaging-umb && ln -s $(pip-3 show mbs_messaging_umb | awk '/^Location:/ {print $2}')/etc/mbs-messaging-umb/config.py /etc/mbs-messaging-umb/config.py USER 1001