dockerfile: do ldconfig after pymscp installation

This commit is contained in:
Ryo Nakamura
2023-12-10 20:56:38 +09:00
parent abe94897ae
commit a6501a16bf
5 changed files with 10 additions and 5 deletions

View File

@@ -32,5 +32,6 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 pysetup.py install --user
&& python3 pysetup.py install --user \
&& ldconfig

View File

@@ -37,5 +37,6 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 pysetup.py install --user
&& python3 pysetup.py install --user \
&& ldconfig

View File

@@ -31,5 +31,6 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 pysetup.py install --user
&& python3 pysetup.py install --user \
&& ldconfig

View File

@@ -36,4 +36,5 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 pysetup.py install --user
&& python3 pysetup.py install --user \
&& ldconfig

View File

@@ -35,5 +35,6 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 pysetup.py install --user
&& python3 pysetup.py install --user \
&& ldconfig