From 37c7f4fbd1cf93b70d002d84eb29aab906b222cc Mon Sep 17 00:00:00 2001 From: Perlover Date: Tue, 23 Feb 2021 17:11:49 +0100 Subject: [PATCH] Ubuntu 20.04 doesn't work without this patch The problem was described here: https://github.com/trezor/blockbook/issues/568 --- build/docker/bin/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/build/docker/bin/Dockerfile b/build/docker/bin/Dockerfile index ce604b84..c182c66f 100644 --- a/build/docker/bin/Dockerfile +++ b/build/docker/bin/Dockerfile @@ -1,6 +1,7 @@ # initialize from the image defined by BASE_IMAGE ARG BASE_IMAGE FROM $BASE_IMAGE +ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get upgrade -y && \