-
Notifications
You must be signed in to change notification settings - Fork 324
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
include pipenv at build of s2i container image rather than downloading it during use of s2i #278
Comments
Related to this issue, it is not possible to use pipenv in a closed environment (no direct access to the Internet) as it can not be installed properly (it seems the Therefore, yes, it would be great to have a default pipenv installed in the image. |
@hhorak ping |
@torsava ??? |
The problem is, pipenv is not packaged in any version of CentOS right now, only Fedora. We could theoretically |
I thing this wouldn't be even possible in internal build system (used by Fedora/RHEL images). Only rpms can be installed during the build. (or some dirty hack is needed to be able to access Internet) |
@torsava so I understand that using CentOS is a hard requirement?
which is even better than downloading a (potentially completely broken) version from the internet during build of an application via s2i |
Ah, indeed. Thus I don't consider this feasible. |
We want to keep the Fedora/CentOS versions functionally as similar as possible.
In that case one is already downloading other packages using pipenv, so adding pipenv itself is not a large departure from that. |
Implementation of the |
|
As a S2I user, I want use python 3.6 with Pipenv, so that pipenv has a specific version installed during build of the s2i builder image and is not pulled down from the internet during usage of the s2i builder image.
The text was updated successfully, but these errors were encountered: