From 68ee117f95e74561182dcbb39d2d2c6c215e7fce Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 9 Aug 2021 15:23:45 -0700 Subject: [PATCH] Build wasi-sdk on xenial to bionic. It appears newer LLVM releases need a newer version of Python, and Xenial is quite old at this point, there being two LTS releases newer it at this time. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7cdfd6c..43ef870 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ # Use a relatively old/stable distro here to maximize the supported platforms # and avoid depending on more recent version of, say, libc. -# Here we choose Xenial 16.04 which mean we also support Debian from stretch -# (releases 2017) onwards. -FROM ubuntu:xenial +# Here we choose Bionic 18.04. +FROM ubuntu:bionic RUN apt-get update \ && apt-get install -y --no-install-recommends \