Skip to content

Commit 33f77fa

Browse files
committed
Install bioservices, cobamp, and troppo manually. Using pip causes unknown intermittent issues
1 parent 6ae60f5 commit 33f77fa

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

Dockerfile

+5-8
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,11 @@ COPY --chown=1000:100 main "${HOME}"/main
1515
RUN git clone https://github.com/babessell1/cobamp.git \
1616
&& git clone https://github.com/cokelaer/bioservices.git \
1717
&& git clone https://github.com/babessell1/troppo.git \
18-
&& cd cobamp \
19-
&& python setup.py install \
20-
&& cd ../bioservices \
21-
&& python setup.py install \
22-
&& cd ../troppo \
23-
&& python setup.py install \
24-
&& cd .. \
25-
&& rm -rf cobamp bioservices troppo
18+
&& cd cobamp && python setup.py install --quiet & \
19+
&& cd ../bioservices && python setup.py install --quiet & \
20+
&& cd ../troppo && python setup.py install --quiet & \
21+
&& wait \
22+
&& cd .. && rm -rf cobamp bioservices troppo
2623

2724
# Install python-related items
2825
RUN conda config --quiet --add channels conda-forge \

environment.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ dependencies:
4848
- scanpy==1.9.1
4949
- pip==22.1.2
5050
- pip:
51-
- git+https://github.com/babessell1/cobamp.git@master#egg=cobamp
52-
- git+https://github.com/cokelaer/bioservices.git@main#egg=bioservices
53-
- git+https://github.com/babessell1/troppo.git@master#egg=troppo
5451
- aioftp==0.21.2
5552
- python-libsbml==5.19.2
5653
- optlang==1.5.2

0 commit comments

Comments
 (0)