Hi – I’m trying to create and run an image in a pipeline. When run, that image’s entrypoint.sh needs to git fetch
to update some references. Specifically, the pipeline looks like:
- name: build image
...
- name: run image just built
...
Unexpectedly, the entrypoint is failing with the classic terminal prompt disabled etc
and ls -la ~
shows no .netrc
(although previous steps show it present).
Is it expected that the latter step would not have the netrc mounted into it? Is there a way around it? Thanks.