From 6110d31969cb8b400635aa1a08c3678ba3b6690f Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Mon, 21 Sep 2020 18:20:50 +0800 Subject: [PATCH] [dockerfile] Add missing apt pacakge `locales` locale-gen command seems missing since uncertain point for a while: ``` Step 15/33 : RUN locale-gen en_US.UTF-8 ---> Running in fae073c89c01 /bin/bash: locale-gen: command not found The command '/bin/bash -o pipefail -c locale-gen en_US.UTF-8' returned a non-zero code: 127 ``` This patch should fix the Docker image build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8d613fd..533b395 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,7 @@ RUN apt update && \ file \ openssl \ libssl-dev \ + locales \ ca-certificates \ ssh \ wget \