update docker file to support low version npm package (#669)

### Type of change

- [x] Refactoring
This commit is contained in:
KevinHuSh
2024-05-08 10:40:38 +08:00
committed by GitHub
parent a553dc8dbd
commit d15ba37313
4 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ RUN dnf install -y openmpi openmpi-devel python3-openmpi
ENV C_INCLUDE_PATH /usr/include/openmpi-x86_64:$C_INCLUDE_PATH
ENV LD_LIBRARY_PATH /usr/lib64/openmpi/lib:$LD_LIBRARY_PATH
RUN rm /root/miniconda3/envs/py11/compiler_compat/ld
RUN cd ./web && npm i && npm run build
RUN cd ./web && npm i --force && npm run build
RUN conda run -n py11 pip install $(grep -ivE "mpi4py" ./requirements.txt) # without mpi4py==3.1.5
RUN conda run -n py11 pip install redis