-
Notifications
You must be signed in to change notification settings - Fork 106
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
chore: add .gitpod.yml and .docker/gitpod/Dockerfile #732
chore: add .gitpod.yml and .docker/gitpod/Dockerfile #732
Conversation
0cae6fa
to
57ff473
Compare
awaiting-review |
.docker/gitpod/Dockerfile
Outdated
|
||
USER root | ||
|
||
RUN apt-get update && apt-get install sudo git curl git bash-completion python3 python3-requests gcc make -y && apt-get clean |
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 don't think we should need any python3 anymore. (Ideally we'd also remove this on the mathlib side).
There's also a repeated git
here.
Could you test without?
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 have removed git
and python3
and ran everything again successfully.
I didn't remove python3-requests
. We still need that right? If you remove it you can't run python3 -m http.server
to expose the documentation.
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 guess --- I've never done that. I guess it doesn't hurt too much having python bundled in.
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.
Alright, my thinking was that all the commands in the README.md should work out of the box.
I just launched Gitpod successfully from https://github.com/leanprover/std4 and built std4. Thanks!
48d89f7
to
bb1fa8c
Compare
awaiting-review |
Add docker files and .gitpod.yml to enable use of Gitpod with std4. Both of these are copied from mathlib with modifications for std4
I have opened std4 in Gitpod and tested,
related to #565