-
Notifications
You must be signed in to change notification settings - Fork 362
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
Add preBuild hook to configuration standard #1343
Comments
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗 |
The r2d configuration files are designed to enabled reproducible repositories, but having a deployment specific pre-build breaks that, since it's only applicable to a single deployment and may actively break other deployments. It sounds like you really want a deployment specific override separate from the repositories, e.g. in a global configuration file. repo2docker/repo2docker/app.py Lines 234 to 242 in d2f467c
so maybe the equivalent for that, but at the start of the Dockerfile, could be useful, and you give all your users a standard repo2docker configuration file? |
Our intended use for the proposed step is simply setting 3 environment variables (probably in a profile file, since following steps should be able to pick them up) and installing an SSL cert. |
An equivalent for |
Proposed change
Builds which follow the
repo2docker
configuration standard can be difficult to configure behind certain firewalled environments where a proxy must be configured to gain "outside" Internet access.For example, (ref. pangeo-docker-images issue-517) the
pangeo/base-image/Dockerfile
contains a number of ONBUILD instructions (following repo2docker configuration standard) which are intended to help the developer with installs of additional packages etc, but none of these steps works; We see errors from the ONBUILD steps like:A
preBuild
step similar to the existing[postBuild](https://repo2docker.readthedocs.io/en/latest/config_files.html#postbuild-run-code-after-installing-the-environment)
would be provide a useful point where we could configure the additional certs, proxy environment config, and anything else required before apt-get package installation can succeed.Possible code for the
preBuild
hook (untested):(Insert at line 117 of https://github.com/pangeo-data/pangeo-docker-images/blob/master/base-image/Dockerfile between existing ONBUILD
Checking for binder
andChecking for apt.txt
)Alternative options
As a workaround we have to forego the convenience of the provided ONBUILD steps and repeat the same logic in our own Dockerfile which builds FROM pangeo/base-image. This seems repetitive and should not be necessary.
We've considered forking pangeo/base-image into our own repo to make these changes possible but that's a highly undesirable option.
Who would use this feature?
Anyone who wishes to make a build following repo2docker configuration standards but is stuck behind a proxy firewall.
How much effort will adding it take?
Patch is above - I would estimate less than half a day for documentation updates and code integration.
Who can do this work?
Basic shell skills, ability to read and write documentation.
The text was updated successfully, but these errors were encountered: