A user reported this.
Trying to use ssh or git clone with ssh fails:
workspace ❯ source ▶ $ ▶ git clone git@github.com:SwissDataScienceCenter/renku-data-services.git
Cloning into 'renku-data-services'...
OpenSSL version mismatch. Built against 30000020, you have 30500040
fatal: Could not read from remote repository.
Example image: harbor.renkulab.io/renku-build/renku-build:renku-01k71dt4heexs2wfmt0a6b2np3
To reproduce:
docker run -ti --rm --entrypoint launcher harbor.renkulab.io/renku-build/renku-build:renku-01k71dt4heexs2wfmt0a6b2np3 bash
Then run
git clone git@github.com:SwissDataScienceCenter/renku-data-services.git
If the image is run without the entrypoint set to launcher then ssh works:
docker run -ti --rm --entrypoint bash harbor.renkulab.io/renku-build/renku-build:renku-01k71dt4heexs2wfmt0a6b2np3
A user reported this.
Trying to use ssh or
git clonewith ssh fails:Example image:
harbor.renkulab.io/renku-build/renku-build:renku-01k71dt4heexs2wfmt0a6b2np3To reproduce:
Then run
If the image is run without the
entrypointset tolauncherthen ssh works: