about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2020-10-28 17:26:03 -0700
committerJosh Stone <jistone@redhat.com>2020-10-28 17:26:03 -0700
commitd9cbd192eb97c96f045134236f22d214d8977b68 (patch)
treeebd92f7ef9dabceca75044d54b55c359c9305124 /src/ci/docker
parent3dddf6ac1e194deb3d927064e7c6d50bc9325dd0 (diff)
downloadrust-d9cbd192eb97c96f045134236f22d214d8977b68.tar.gz
rust-d9cbd192eb97c96f045134236f22d214d8977b68.zip
ci: update x86_64-gnu and x86_64-gnu-debug to ubuntu:20.04
The former `ubuntu:19.10` reached EOL in July, 2020, whereas
`ubuntu:20.04` is an LTS release supported until 2025.

These are non-dist CI images, so the impact should be low.
Diffstat (limited to 'src/ci/docker')
-rw-r--r--src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile3
-rw-r--r--src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile b/src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile
index fe956b9c7b2..7651947c525 100644
--- a/src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile
+++ b/src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile
@@ -1,5 +1,6 @@
-FROM ubuntu:19.10
+FROM ubuntu:20.04
 
+ARG DEBIAN_FRONTEND=noninteractive
 RUN apt-get update && apt-get install -y --no-install-recommends \
   g++ \
   make \
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile b/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile
index 527b539f682..88c182a4d43 100644
--- a/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile
+++ b/src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile
@@ -1,5 +1,6 @@
-FROM ubuntu:19.10
+FROM ubuntu:20.04
 
+ARG DEBIAN_FRONTEND=noninteractive
 RUN apt-get update && apt-get install -y --no-install-recommends \
   g++ \
   make \