You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I couldn't docker-compose at step7 "Starting OperationHub".
probably because the building container cannot run "git clone" over the proxy.
how can I build operation hub under the proxy?
Logs is below.
docker-compose build
---
Building jupyterhub
Step 1/12 : FROM jupyterhub/jupyterhub:1.0.0
...
Step 5/12 RUN pip --no-cache-dir install git+https://github.com/NII-cloud-operation/Jupyter-LC_nblineage.git
...
Running command git clone -q https://github.com/NII-cloud-operation/Jupyter-LC_nblineage.git /tmp/pip-req-build-m32fmpqv
fatal: unable to access 'https://github.com/NII-cloud-operation/Jupyter-LC_nblineage.git' : server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
ERROR: Command "git clone -q https://github.com/NII-cloud-operation/Jupyter-LC_nblineage.git /tmp/pip-req-build-m32fmpqv" failed with error code 128 in None
ERROR: Service ' jupyterhub' failed to build: The command '/bin/sh -c pip --no-cache-dir install git+https://github.com/NII-cloud-operation/Jupyter-LC_nblineage.git' returned a non-zero code: 1
I tried adding these option but the result was the same.
--build-arg http_proxy=http://(myproxyserver):(port)
--build-arg https_proxy=http://(myproxyserver):(port)
--build-arg GIT_SSL_NO_VERIFY=1
--build-arg GIT_SSL_VERSION=tlsv1.2
I confirmed myproxy has no problem because I could run 'pip install' and 'git clone' from hostOS under the proxy.
Thank you.
The text was updated successfully, but these errors were encountered:
mnagaku
added a commit
to mnagaku/OperationHub
that referenced
this issue
Aug 15, 2024
Since it now specifies the old JupyterHub 2.3, a build error will occur if setuptools is the latest. If you revert to 65.4.1, you can build it and it will work without any problems.
Since the build error occurs at the same location, the following problem may also be fixed.
NII-cloud-operation#12
I couldn't docker-compose at step7 "Starting OperationHub".
probably because the building container cannot run "git clone" over the proxy.
how can I build operation hub under the proxy?
Logs is below.
I tried adding these option but the result was the same.
--build-arg http_proxy=http://(myproxyserver):(port)
--build-arg https_proxy=http://(myproxyserver):(port)
--build-arg GIT_SSL_NO_VERIFY=1
--build-arg GIT_SSL_VERSION=tlsv1.2
I confirmed myproxy has no problem because I could run 'pip install' and 'git clone' from hostOS under the proxy.
Thank you.
The text was updated successfully, but these errors were encountered: