cdfc1a1dff
Fixes a pip install error when building the notificationservice-base, notificationclient-base and locationservice-base images: ModuleNotFoundError: No module named 'setuptools_rust' It appears that an upstream change to oslo.messaging has caused the setuptools_rust dependency to not be found. Updating pip3 before installing additional modules resolves this issue. Closes-Bug: 1988854 Signed-off-by: Cole Walker <cole.walker@windriver.com> Change-Id: If568191b3e8feb1c23bdbc4168e495395567846d
24 lines
612 B
Docker
24 lines
612 B
Docker
ARG BASE
|
|
FROM ${BASE}
|
|
|
|
ARG STX_REPO_FILE=/etc/yum.repos.d/stx.repo
|
|
|
|
ENV KUBE_LATEST_VERSION="v1.23.1"
|
|
|
|
RUN set -ex ;\
|
|
yum install --disablerepo=* \
|
|
$(grep '^name=' ${STX_REPO_FILE} | awk -F '=' '{printf "--enablerepo=" $2 " "}') \
|
|
-y \
|
|
gcc python3-devel python3-pip \
|
|
&& pip3 install --upgrade pip \
|
|
&& pip3 install --user pecan \
|
|
&& pip3 install oslo-config \
|
|
&& pip3 install oslo-messaging \
|
|
&& pip3 install WSME
|
|
|
|
WORKDIR /opt/
|
|
COPY ./locationservice /opt/locationservice
|
|
RUN cd /opt/locationservice && python3 setup.py develop
|
|
|
|
CMD ["bash"]
|