From 69e46b88d8e74fb0954a0e1773e94c485c929cf0 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Sat, 11 Apr 2020 09:35:36 -0400 Subject: [PATCH] Build against ubuntu xenial (#123) 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 \