From b17ca703774798b3cf0e09c9bc1a63eed0abed5c Mon Sep 17 00:00:00 2001 From: Muhammad Soban Javed Date: Sat, 7 Oct 2023 01:20:50 +0500 Subject: [PATCH] fix: install git in Dokcerfile to install git hash --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 496171f1c..7aa280219 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,9 @@ RUN apt-get update && apt-get install --no-install-recommends -qy \ # needed by i18n tests in CI gettext \ # needed by a11y tests script - curl && \ + curl \ + # needed to install github based dependency + git && \ rm -rf /var/lib/apt/lists/* RUN locale-gen en_US.UTF-8