From 87e2d3fa583c6b0cb13797c71e5647dc1f593b25 Mon Sep 17 00:00:00 2001 From: Tim McCormack Date: Wed, 5 Jul 2023 18:17:01 +0000 Subject: [PATCH] fix: Don't make image build wait for manual config of tzdata tzdata seems to get installed now as a dependency of pkg-config, and Debian defaults to interactive configuration. Tell it that ain't gonna happen. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 752f4316..ff433a03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:focal as app # System requirements. RUN apt-get update -RUN apt-get install -qy \ +RUN DEBIAN_FRONTEND=noninteractive apt-get install -qy \ git-core \ language-pack-en \ build-essential \