From ec2d01ab400bb8cb35234ce879c98e4b71e00261 Mon Sep 17 00:00:00 2001 From: pokemonlover1234 Date: Wed, 13 Mar 2019 14:22:36 -0400 Subject: [PATCH] Add git to docker container Install git in the docker container, proposed by #203. While it is possible that issue requires further discussion, this is just a proposal pull request. If that proposal is accepted, here's the pull request. --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 440cb018..509d4f2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ FROM node:8.15.0 -# Install VS Code's deps. These are the only two it seems we need. +# Install VS Code's deps. These are the only two it seems we need. Install git for source control. RUN apt-get update && apt-get install -y \ libxkbfile-dev \ - libsecret-1-dev + libsecret-1-dev \ + git # Ensure latest yarn. RUN npm install -g yarn@1.13 -- GitLab