From 599e9ab156704e5621e4b05e73435a9bd3b808c7 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 10 Apr 2020 18:17:53 -0700 Subject: [PATCH] Build against ubuntu xenial Fixes #98 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c9cce5..c0a386f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # Use a relatively old/stable distro here to maximize the supported platforms # and avoid depending on more recent version of, say, libc. -FROM debian:stretch +# Here we choose Xenial 16.04 which mean we also support Debian from stretch +# (releases 2017) onwards. +FROM ubuntu:xenial RUN apt-get update \ && apt-get install -y --no-install-recommends \