From 954e980ae3d7ad5e5aa07ba6775725f049d8fb74 Mon Sep 17 00:00:00 2001 From: Micheal Waltz Date: Sat, 5 Oct 2019 11:04:22 +0000 Subject: [PATCH] Fix docker builds #3731 (#3767) --- substrate/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/substrate/Dockerfile b/substrate/Dockerfile index 0271db8d14..1ebc7b04aa 100644 --- a/substrate/Dockerfile +++ b/substrate/Dockerfile @@ -5,13 +5,15 @@ FROM phusion/baseimage:0.10.2 as builder LABEL maintainer="chevdor@gmail.com" LABEL description="This is the build stage for Substrate. Here we create the binary." +ENV DEBIAN_FRONTEND=noninteractive + ARG PROFILE=release WORKDIR /substrate COPY . /substrate RUN apt-get update && \ - apt-get dist-upgrade -y && \ + apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" && \ apt-get install -y cmake pkg-config libssl-dev git clang RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \