Skip to content

Commit f934073

Browse files
committed
Fix gurobi installation
1 parent c2581c0 commit f934073

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Dockerfile

+7-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ 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-
&& 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" \
1924
&& rm -rf cobamp bioservices troppo \
2025
&& pip cache purge
2126

@@ -29,7 +34,7 @@ RUN conda config --quiet --add channels conda-forge \
2934
&& wget --quiet --directory-prefix="${HOME}" https://packages.gurobi.com/${GRB_SHORT_VERSION}/gurobi${GRB_VERSION}_linux64.tar.gz \
3035
&& tar -xf "${HOME}/gurobi${GRB_VERSION}_linux64.tar.gz" \
3136
&& rm -f "${HOME}/gurobi${GRB_VERSION}_linux64.tar.gz" \
32-
&& mv "${HOME}/gurobi*" "${HOME}/gurobi/" \
37+
&& mv ${HOME}/gurobi* ${HOME}/gurobi \
3338
&& rm -f "${HOME}/environment.yaml" \
3439
&& rm -r "${HOME}/work" \
3540
&& pip cache purge \

0 commit comments

Comments
 (0)