From 538f992aee58282ed093bfc7fe2df8b63c0b1be6 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 22 Apr 2021 08:36:53 +0100 Subject: [PATCH] Bug: Add git to Dockerfile.ubuntu (#33247) (#33248) * Add git to Dockerfile.ubuntu * Use apt-get * Add quiet flag * Update Dockerfile.ubuntu Co-authored-by: Arve Knudsen Co-authored-by: Arve Knudsen (cherry picked from commit 6acb99afde6e7b6fd50e0f263499abe4010aac00) Co-authored-by: Dimitris Sotirakis --- Dockerfile.ubuntu | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 00ed09edb09..f4775e07abc 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -5,6 +5,7 @@ WORKDIR /usr/src/app/ COPY package.json yarn.lock ./ COPY packages packages +RUN apt-get update && apt-get install -yq git RUN yarn install --pure-lockfile COPY tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./