File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ FROM ubuntu:jammy-20250819 AS env
99MAINTAINER akenmorris@gmail.com
1010
1111# Set environment variables
12- ENV PATH=/opt/conda/bin:/opt/rh/devtoolset-9/root/usr/bin:/ usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
12+ ENV PATH=/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
1313ENV LDFLAGS=-L/opt/conda/lib
1414
1515ARG DEBIAN_FRONTEND=noninteractive
@@ -18,10 +18,6 @@ ENV TZ=Etc/UTC
1818# Update
1919RUN apt-get update -y && apt-get upgrade -y && apt-get dist-upgrade -y && apt-get install build-essential software-properties-common -y && add-apt-repository ppa:ubuntu-toolchain-r/test -y && apt-get update -y
2020
21- # Install GCC 9
22- RUN apt-get install gcc-9 g++-9 -y
23- RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-9 && update-alternatives --config gcc
24-
2521# Install git and git-lfs
2622RUN add-apt-repository ppa:git-core/ppa
2723RUN apt-get update
Original file line number Diff line number Diff line change @@ -90,30 +90,30 @@ function install_conda() {
9090 if [[ " $DEVELOPER " == " YES" ]] ; then
9191 echo " Developer packages enabled"
9292
93- CONDA_PACKAGES+=(cmake=4.1.1 \
94- gmock=1.17 .0 \
95- doxygen=1.13 .2 \
96- graphviz=13.1.2 \
93+ CONDA_PACKAGES+=(cmake=3.23.2 \
94+ gmock=1.11 .0 \
95+ doxygen=1.9 .2 \
96+ graphviz=4.0.0 \
9797 eigen=3.4.0 \
98- hdf5=1.14.6 \
98+ hdf5=1.12.2 \
9999 tbb=2021.5.0 \
100100 tbb-devel=2021.5.0 \
101- boost=1.85 .0 \
102- openexr=3.4.0 \
101+ boost=1.74 .0 \
102+ openexr=3.1.5 \
103103 ilmbase=2.5.5 \
104- pybind11=3.0.1 \
105- nlohmann_json=3.12.0 \
104+ pybind11=2.9.2 \
105+ nlohmann_json=3.10.5 \
106106 spdlog=1.10.0 \
107107 pkg-config=0.29.2 \
108- openh264=2.6 .0 \
109- libhwloc=2.12.1 \
110- qt-main=5.15.15 \
108+ openh264==2.3 .0 \
109+ libhwloc=2.8.0 \
110+ qt-main=5.15.4 \
111111 )
112112
113113 # linux (only) deps
114114 if [[ " $( uname) " == " Linux" ]]; then
115115 # required by install_python_module.sh
116- CONDA_PACKAGES+=(zlib=1.3.1 patchelf=0.17.2 )
116+ CONDA_PACKAGES+=(zlib=1.2.12 patchelf=0.14.5 )
117117 fi
118118 fi
119119
You can’t perform that action at this time.
0 commit comments