Bug: Add git to Dockerfile.ubuntu (#33247)

* Add git to Dockerfile.ubuntu

* Use apt-get

* Add quiet flag

* Update Dockerfile.ubuntu

Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>

Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Dimitris Sotirakis
2021-04-22 10:11:29 +03:00
committed by GitHub
parent 7ff6665ac2
commit 6acb99afde
+1
View File
@@ -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 ./