From c1116675a1a04698ce4472e4f071d5f09a3435b5 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Mon, 12 Sep 2016 06:45:04 -0400 Subject: [PATCH] Switch from Debian to Ubuntu 16.04 to work around Rust musl link bug See https://github.com/rust-lang/rust/issues/34978 Allowing broken musl cross compilers through to stable really does break some Rust-based projects. --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b459643..87f6c98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -# Use Debian 8.0 "Jessie" as the base for our Rust musl toolchain. -FROM debian:jessie +# Use Debian 16.04 as the base for our Rust musl toolchain, because of +# https://github.com/rust-lang/rust/issues/34978 (as of Rust 1.11). +FROM ubuntu:16.04 # Make sure we have basic dev tools for building C libraries. Our goal # here is to support the musl-libc builds and Cargo builds needed for a