我想运行一个setup.py
,它定义了几个依赖链接,即:
dependency_links=[
"git+ssh://git@my.gitlab/myproject1.git@v1.4.0#egg=myproject1-1.4.0",
"git+ssh://git@my.gitlab/myproject2.git@v0.2.0#egg=myproject2-0.2.0",
]
我的问题是,在运行pip install
命令时是否有办法通过命令行传递此数组,如下所示(例如):
RUN pip install numpy==1.10.1 \
&& pip wheel --find-links="wheelhouse/" --wheel-dir="wheelhouse/" uwsgi \
&& pip wheel --find-links="wheelhouse/" --wheel-dir="wheelhouse/" --process-dependency-links gitlablink1, gitlablink2 .