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.
This commit is contained in:
pokemonlover1234 2019-03-13 14:22:36 -04:00 committed by Anmol Sethi
parent f9448c6cd4
commit ec2d01ab40
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB
1 changed files with 3 additions and 2 deletions

View File

@ -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