From 1bfa783c26626baf46cf376aa2f87f745befe714 Mon Sep 17 00:00:00 2001 From: Radio <35003866+radiolee@users.noreply.github.com> Date: Tue, 2 Nov 2021 15:48:24 +0800 Subject: [PATCH] Update Dockerfile Fix build ERROR 127, "msgfmt: ommand not found" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2534e1c..756ce33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get -y install build-essential uuid-dev iasl nasm gcc-aarch64-linux-gnu abootimg python3-distutils python3-pil python3-git locales \ +RUN apt-get update && apt-get -y install build-essential uuid-dev iasl nasm gcc-aarch64-linux-gnu abootimg python3-distutils python3-pil python3-git gettext locales \ && rm -rf /var/lib/apt/lists/* \ && locale-gen en_US.UTF-8 ENV LANG en_US.utf8