File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,12 @@ COPY --chown=1000:100 main "${HOME}"/main
15
15
RUN git clone https://github.com/babessell1/cobamp.git \
16
16
&& git clone https://github.com/cokelaer/bioservices.git \
17
17
&& git clone https://github.com/babessell1/troppo.git \
18
- && pip install ./cobamp ./bioservices ./troppo \
18
+ && pip install ./cobamp \
19
+ && echo "COBAMP DONE" \
20
+ && pip install ./bioservices \
21
+ && echo "BIOSERVICES DONE" \
22
+ && pip install ./troppo \
23
+ && echo "TROPPO DONE" \
19
24
&& rm -rf cobamp bioservices troppo \
20
25
&& pip cache purge
21
26
@@ -29,7 +34,7 @@ RUN conda config --quiet --add channels conda-forge \
29
34
&& wget --quiet --directory-prefix="${HOME}" https://packages.gurobi.com/${GRB_SHORT_VERSION}/gurobi${GRB_VERSION}_linux64.tar.gz \
30
35
&& tar -xf "${HOME}/gurobi${GRB_VERSION}_linux64.tar.gz" \
31
36
&& rm -f "${HOME}/gurobi${GRB_VERSION}_linux64.tar.gz" \
32
- && mv " ${HOME}/gurobi*" " ${HOME}/gurobi/" \
37
+ && mv ${HOME}/gurobi* ${HOME}/gurobi \
33
38
&& rm -f "${HOME}/environment.yaml" \
34
39
&& rm -r "${HOME}/work" \
35
40
&& pip cache purge \
You can’t perform that action at this time.
0 commit comments