Skip to content

Commit ec2d01a

Browse files
pokemonlover1234nhooyr
authored andcommitted
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.
1 parent f9448c6 commit ec2d01a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
FROM node:8.15.0
22

3-
# Install VS Code's deps. These are the only two it seems we need.
3+
# Install VS Code's deps. These are the only two it seems we need. Install git for source control.
44
RUN apt-get update && apt-get install -y \
55
libxkbfile-dev \
6-
libsecret-1-dev
6+
libsecret-1-dev \
7+
git
78

89
# Ensure latest yarn.
910
RUN npm install -g [email protected]

0 commit comments

Comments
 (0)