forked from jupyterhub/repo2docker
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support setting appendix on Dockerfiles too
Until now, 'appendix' was ignored for repos built with their own Dockerfile. This fixes that, and sets the appendix on repos built with Dockerfiles too. I want to set a REPO_URL env var for all images built with repo2docker-action (jupyterhub/repo2docker-action#86) and this is needed for that.
- Loading branch information
Showing
2 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
/usr/local/bin/sayhi.sh | ||
|
||
# Test that the appendix worked, even though this is a custom Dockerfile | ||
test $(cat /tmp/appendix) == "appendix" |