Open agile opened 1 year ago
@agile Gotcha. Do you want private repos for the modules installed in the venv, or in the normal requirements.txt? I.e. would you like a way to pass the credentials/flags to the RUN pip install -r requirements.txt
/to not have those steps automatically added?
We are using a custom image build in order to support installing dependencies from private repos as described here but when attempting to use the extension with that setup, ie: something like this using a modification of the example in those docs:
This does not work because with the extension it is appending additional statements after the final
COPY
statements defined at the end of the build that replicate tasks performed in prior stages such as installingpackages.txt
andrequirements.txt
but without the necessary credentials to do so successfully.In the meantime we're working on replicating what the extension does manually in our build but would be nice if we didn't need to do that.