util-docker: Update Ubuntu 20.04 to use GCC-10

GCC-9 is no longer supported.

Change-Id: I09bf8f744546908b1c06615b458b31b9b814b61a
This commit is contained in:
Bobby R. Bruce
2023-11-13 01:36:52 -08:00
parent c40c4450f5
commit cb62b08989

View File

@@ -32,6 +32,15 @@ RUN apt -y update && apt -y upgrade && \
libprotobuf-dev protobuf-compiler libprotoc-dev libgoogle-perftools-dev \
python3-dev python-is-python3 doxygen libboost-all-dev \
libhdf5-serial-dev python3-pydot libpng-dev libelf-dev pkg-config pip \
python3-venv black
python3-venv black gcc-10 g++-10
RUN pip install mypy pre-commit
RUN update-alternatives --install \
/usr/bin/g++ g++ /usr/bin/g++-10 100
RUN update-alternatives --install \
/usr/bin/gcc gcc /usr/bin/gcc-10 100
RUN update-alternatives --install \
/usr/bin/c++ c++ /usr/bin/g++-10 100
RUN update-alternatives --install \
/usr/bin/cc cc /usr/bin/gcc-10 100