-
Notifications
You must be signed in to change notification settings - Fork 315
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
[studio] The Studio Docker image build script has a no-args default. #579
Conversation
By analyzing the blame information on this pull request, we identified @adamhjk to be a potential reviewer |
@@ -43,12 +44,13 @@ if ! command -v hab >/dev/null; then | |||
exit 9 | |||
fi | |||
|
|||
tmp_root="$(mktemp -t -d "$(basename $0)-XXXX")" | |||
tmp_root="$(mktemp -d -t "$(basename $0)-XXXX")" |
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 like the cut of your jib.
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.
📌 Commit 06daa92 has been approved by |
☔ The latest upstream changes (presumably c3916ed) made this pull request unmergeable. Please resolve the merge conflicts. |
This will make building the Docker image easier: you get a default image with default behavior. If you want to customize the versions of hab, Studio or other, then provide arguments to the script. Signed-off-by: Fletcher Nichol <[email protected]>
06daa92
to
c42ebfa
Compare
📌 Commit c42ebfa has been approved by |
This will make building the Docker image easier: you get a default image with default behavior. If you want to customize the versions of hab, Studio or other, then provide arguments to the script. Signed-off-by: Fletcher Nichol <[email protected]> Pull request: #579 Approved by: fnichol
☀️ Test successful - travis |
This will make building the Docker image easier: you get a default image with default behavior. If you want to customize the versions of hab, Studio or other, then provide arguments to the script. Signed-off-by: Fletcher Nichol <[email protected]> Pull request: #579 Approved by: fnichol
This will make building the Docker image easier: you get a default image
with default behavior. If you want to customize the versions of hab,
Studio or other, then provide arguments to the script.