Skip to content

Commit cff0cd2

Browse files
committed
Update container base to Ubuntu 24.04
1 parent 848f4a9 commit cff0cd2

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

container/Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1-
FROM ghcr.io/spack/tutorial-ubuntu-22.04:v2024-05-07
1+
FROM ubuntu:24.04
22

33
ENV DEBIAN_FRONTEND=noninteractive
44

55
# Install AWS cli
66
RUN apt-get update -y && \
77
apt-get install -y --no-install-recommends \
8+
gcc gfortran g++ \
9+
gcc-10 gfortran-10 g++-10 \
10+
clang \
11+
libc-dev \
812
awscli \
913
bash-completion \
1014
emacs \
1115
jq \
1216
less \
13-
vim
14-
15-
# Remove GCC 12 from container
16-
RUN apt-get remove -y gcc-12
17+
vim \
18+
&& rm -rf /var/lib/apt/lists/*
1719

1820
# Download the buildcache
1921
RUN mkdir /mirror

0 commit comments

Comments
 (0)