fix docker image building for openmc+dagmc combination (#2678)

This commit is contained in:
Jonathan Shimwell 2023-09-05 05:39:02 +01:00 committed by GitHub
parent a42b9ba4f9
commit a125f81500
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ RUN cd $HOME \
RUN if [ "$build_dagmc" = "on" ]; then \
# Install addition packages required for DAGMC
apt-get -y install libeigen3-dev libnetcdf-dev libtbb-dev libglfw3-dev \
&& pip install --upgrade numpy cython \
&& pip install --upgrade numpy "cython<3.0" \
# Clone and install EMBREE
&& mkdir -p $HOME/EMBREE && cd $HOME/EMBREE \
&& git clone --single-branch -b ${EMBREE_TAG} --depth 1 ${EMBREE_REPO} \