We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e4248 commit d34a2b1Copy full SHA for d34a2b1
src/ci/docker/host-x86_64/x86_64-gnu-nopt/Dockerfile
@@ -1,7 +1,8 @@
1
-FROM ubuntu:20.04
+FROM ubuntu:22.04
2
3
# Avoid interactive prompts while installing `tzdata` dependency with `DEBIAN_FRONTEND`.
4
-RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
+ARG DEBIAN_FRONTEND=noninteractive
5
+RUN apt-get update && apt-get install -y --no-install-recommends \
6
g++ \
7
make \
8
ninja-build \
@@ -18,9 +19,6 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
18
19
xz-utils \
20
&& rm -rf /var/lib/apt/lists/*
21
-COPY scripts/cmake.sh /scripts/
22
-RUN /scripts/cmake.sh
23
-
24
COPY scripts/sccache.sh /scripts/
25
RUN sh /scripts/sccache.sh
26
0 commit comments