-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Dockerfile: include git #231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
I think we should merge in everyone else's PRs instead so they get attribution. |
Mine (#230) does the same thing, except I put the git install in the wrong spot. |
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.
@ammario the changes in this PR are different from the other PRs. Regardless, I've included all their commits here so they still get attribution and then included my own commit at the end to fix things up. |
Dockerfile
Outdated
@@ -1,6 +1,6 @@ | |||
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Second sentence is in the wrong place (and extraneous imo)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, from old a commit I just added. Will remove.
net-tools \ | ||
git \ | ||
locales | ||
RUN locale-gen en_US.UTF-8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could squash that into the other run.
Also improves installation of runtime deps.
Closes #221
Closes #230
Closes #203