mirror of https://git.tuxpa.in/a/code-server.git
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:
parent
f9448c6cd4
commit
ec2d01ab40
|
@ -1,9 +1,10 @@
|
||||||
FROM node:8.15.0
|
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 \
|
RUN apt-get update && apt-get install -y \
|
||||||
libxkbfile-dev \
|
libxkbfile-dev \
|
||||||
libsecret-1-dev
|
libsecret-1-dev \
|
||||||
|
git
|
||||||
|
|
||||||
# Ensure latest yarn.
|
# Ensure latest yarn.
|
||||||
RUN npm install -g yarn@1.13
|
RUN npm install -g yarn@1.13
|
||||||
|
|
Loading…
Reference in New Issue