Skip to content
Snippets Groups Projects

feat: install most dependencies in cacheable layer, before adding main

Merged Wouter Deconinck requested to merge cacheable-layer into master
Compare and Show latest version
12 files
+ 511
429
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -10,6 +10,10 @@ LABEL maintainer="Sylvester Joosten <sjoosten@anl.gov>" \
@@ -10,6 +10,10 @@ LABEL maintainer="Sylvester Joosten <sjoosten@anl.gov>" \
COPY bashrc /root/.bashrc
COPY bashrc /root/.bashrc
 
## With heredocs for multi-line scripts, we want to fail on error and the print failing line.
 
## Ref: https://docs.docker.com/engine/reference/builder/#example-running-a-multi-line-script
 
SHELL ["bash", "-ex", "-c"]
 
ENV CLICOLOR_FORCE=1 \
ENV CLICOLOR_FORCE=1 \
LANGUAGE=en_US.UTF-8 \
LANGUAGE=en_US.UTF-8 \
LANG=en_US.UTF-8 \
LANG=en_US.UTF-8 \
@@ -17,13 +21,13 @@ ENV CLICOLOR_FORCE=1 \
@@ -17,13 +21,13 @@ ENV CLICOLOR_FORCE=1 \
## Install additional packages. Remove the auto-cleanup functionality
## Install additional packages. Remove the auto-cleanup functionality
## for docker, as we're using the new buildkit cache instead.
## for docker, as we're using the new buildkit cache instead.
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt/lists,sharing=locked \
--mount=type=cache,target=/var/lib/apt/lists,sharing=locked <<EOF
rm -f /etc/apt/apt.conf.d/docker-clean \
rm -f /etc/apt/apt.conf.d/docker-clean
&& ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime \
ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
&& echo "US/Eastern" > /etc/timezone \
echo "US/Eastern" > /etc/timezone
&& apt-get -yqq update \
apt-get -yqq update
&& apt-get -yqq install --no-install-recommends \
apt-get -yqq install --no-install-recommends \
bc \
bc \
bzip2 \
bzip2 \
ca-certificates \
ca-certificates \
@@ -41,6 +45,9 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
@@ -41,6 +45,9 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
less \
less \
libcbor-xs-perl \
libcbor-xs-perl \
libjson-xs-perl \
libjson-xs-perl \
 
libgl-dev \
 
libglx-dev \
 
libopengl-dev \
locales \
locales \
lua-posix \
lua-posix \
make \
make \
@@ -53,50 +60,61 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
@@ -53,50 +60,61 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
time \
time \
unzip \
unzip \
vim-nox \
vim-nox \
wget \
wget
&& apt-get -yqq autoremove \
apt-get -yqq autoremove
&& localedef -i en_US -f UTF-8 en_US.UTF-8
localedef -i en_US -f UTF-8 en_US.UTF-8
 
EOF
# Install updated compilers, with support for multiple base images
# Install updated compilers, with support for multiple base images
## Ubuntu: latest gcc from toolchain ppa, latest stable clang
## Ubuntu: latest gcc from toolchain ppa, latest stable clang
## Debian: default gcc with distribution, latest stable clang
## Debian: default gcc with distribution, latest stable clang
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt/lists,sharing=locked \
--mount=type=cache,target=/var/lib/apt/lists,sharing=locked <<EOF
. /etc/os-release \
. /etc/os-release
&& mkdir -p /etc/apt/source.list.d \
mkdir -p /etc/apt/source.list.d
&& if [ "${ID}" = "ubuntu" ] ; then \
# GCC version and repository
echo "deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu/ \
case ${ID} in
${VERSION_CODENAME} main" \
debian)
> /etc/apt/source.list.d/ubuntu-toolchain.list \
case ${VERSION_CODENAME} in
&& if [ "${VERSION_ID}" = "20.04" ] ; then GCC="-10" CLANG="-12" ; fi\
bookworm) GCC="-12" ;;
&& if [ "${VERSION_ID}" = "22.04" ] ; then GCC="-12" CLANG="-14" ; fi\
trixie) GCC="-13" ;;
&& curl -s https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -\
*) echo "Unsupported VERSION_CODENAME=${VERSION_CODENAME}" ; exit 1 ;;
&& echo "deb http://apt.llvm.org/${VERSION_CODENAME} \
esac ;;
llvm-toolchain-${VERSION_CODENAME}${CLANG} main" \
ubuntu)
> /etc/apt/source.list.d/llvm.list \
echo "deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu/${VERSION_CODENAME} main" > /etc/apt/source.list.d/ubuntu-toolchain.list
&& apt-get -yqq update \
case ${VERSION_CODENAME} in
&& apt-get -yqq install \
focal) GCC="-10" ;;
gcc${GCC} g++${GCC} gfortran${GCC} \
jammy) GCC="-12" ;;
&& apt-get -yqq install \
*) echo "Unsupported VERSION_CODENAME=${VERSION_CODENAME}" ; exit 1 ;;
clang${CLANG} clang-tidy${CLANG} clang-format${CLANG} \
esac ;;
iwyu \
*) echo "Unsupported ID=${ID}" ; exit 1 ;;
&& update-alternatives --install /usr/bin/gcc gcc \
esac
/usr/bin/gcc${GCC} 100 \
# Clang version and repository
&& update-alternatives --install /usr/bin/g++ g++ \
CLANG="-16"
/usr/bin/g++${GCC} 100 \
curl -s https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
&& update-alternatives --install /usr/bin/gfortran gfortran \
if [ ${VERSION_CODENAME} = trixie ] ; then
/usr/bin/gfortran${GCC} 100 \
echo "deb http://apt.llvm.org/unstable llvm-toolchain${CLANG} main" > /etc/apt/sources.list.d/llvm.list
&& update-alternatives --install /usr/bin/clang clang \
else
/usr/bin/clang${CLANG} 100 \
echo "deb http://apt.llvm.org/${VERSION_CODENAME} llvm-toolchain-${VERSION_CODENAME}${CLANG} main" > /etc/apt/sources.list.d/llvm.list
&& update-alternatives --install /usr/bin/clang++ clang++ \
fi
/usr/bin/clang++${CLANG} 100 \
# Install packages
; else \
apt-get -yqq update
apt-get -yqq update \
apt-get -yqq install gcc${GCC} g++${GCC} gfortran${GCC}
&& apt-get -yqq install \
apt-get -yqq install clang${CLANG} clang-tidy${CLANG} clang-format${CLANG} libclang${CLANG}-dev
gcc g++ gfortran \
apt-get -yqq autoremove
clang clang-tidy clang-format \
# Ensure alternatives without version tags
iwyu \
update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp${GCC} 100
; fi \
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc${GCC} 100
&& apt-get -yqq autoremove \
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++${GCC} 100
&& gcc --version \
update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran${GCC} 100
&& clang --version
update-alternatives --install /usr/bin/clang clang /usr/bin/clang${CLANG} 100
 
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++${CLANG} 100
 
update-alternatives --install /usr/bin/clang-tidy-diff clang-tidy-diff /usr/bin/clang-tidy-diff${CLANG}.py 100
 
update-alternatives --install /usr/bin/run-clang-tidy run-clang-tidy /usr/bin/run-clang-tidy${CLANG}.py 100
 
# Default to gcc
 
update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 100
 
update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 100
 
# Check versions
 
gcc --version
 
clang --version
 
EOF
Loading