-
Notifications
You must be signed in to change notification settings - Fork 342
Feat/custom dockerfile tour #2456
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
base: main
Are you sure you want to change the base?
Conversation
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.
Thanks @sulhicader please do not forget to include a demo showing the Tour working properly.
description: "Skip publishing docs site" | ||
required: false | ||
default: "false" | ||
push: |
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.
Do not forget to revert this file once done.
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.
ACK
@@ -0,0 +1,41 @@ | |||
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:91ed94ec4e72368a9b5113f2ffb1d8e783a91db489011a89d9fad3e3816a75ba |
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.
Would be better to name it *.dockerfile
to get proper syntax highlighting etc.
USER root | ||
RUN python3 -m pip uninstall pip -y | ||
RUN mkdir -p /resources | ||
RUN chmod -R 777 /resources |
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.
777 doesn't seem like a proper permission here - not secure. Can you elaborate on why it's needed?
py/apps/tour/requirements.txt
Outdated
@@ -1,14 +1,14 @@ | |||
altair==4.2.0 | |||
bokeh==2.4.2 | |||
Faker==13.3.4 | |||
h2o-wave-ml==0.8.1 | |||
h2o-wave[ml]==1.6.3 |
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.
This duplicates h2o-wave
package, why is the change needed?
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.
This change came from other PR. I replied in PR2454.
The PR fulfills these requirements: (check all the apply)
main
branch.feat: Add a button #xxx
, where "xxx" is the issue number).Closes #xxx
, where "xxx" is the issue number.ui
folder, unit tests (make test
) still pass.Closes #2455