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