From d33ce2e7f75c3a9b2e5dd2a19d40faa9218b11b0 Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Sun, 5 May 2024 18:36:16 -0700 Subject: [PATCH] Add git to the image Dockerfile as well We use a `git` based reference to the `em-common` repo. The related PR added git to the test dockerfile https://github.com/e-mission/e-mission-server/pull/965 to get the tests to pass. We need to add a similar command to the production Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b723189b8..b0450ffde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /usr/src/app RUN apt-get -y -qq update RUN apt-get install -y -qq curl RUN apt-get install -y -qq wget -# RUN apt-get install -y git +RUN apt-get install -y -qq git # install nano and vim for editing # RUN apt-get -y install nano vim