We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 848f4a9 commit cff0cd2Copy full SHA for cff0cd2
1 file changed
container/Dockerfile
@@ -1,19 +1,21 @@
1
-FROM ghcr.io/spack/tutorial-ubuntu-22.04:v2024-05-07
+FROM ubuntu:24.04
2
3
ENV DEBIAN_FRONTEND=noninteractive
4
5
# Install AWS cli
6
RUN apt-get update -y && \
7
apt-get install -y --no-install-recommends \
8
+ gcc gfortran g++ \
9
+ gcc-10 gfortran-10 g++-10 \
10
+ clang \
11
+ libc-dev \
12
awscli \
13
bash-completion \
14
emacs \
15
jq \
16
less \
- vim
-
-# Remove GCC 12 from container
-RUN apt-get remove -y gcc-12
17
+ vim \
18
+ && rm -rf /var/lib/apt/lists/*
19
20
# Download the buildcache
21
RUN mkdir /mirror
0 commit comments