Commit c9e6fedb authored by Tom Ward's avatar Tom Ward Committed by Copybara-Service
Browse files

Collapse hh-suite install steps into single layer.

PiperOrigin-RevId: 387060806
Change-Id: Ifa71ce119182ed79a379e57946b2b694e134ef14
parent acf25fc8
.dockerignore
docker/Dockerfile
README.md
......@@ -34,11 +34,12 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
# Compile HHsuite from source.
RUN git clone --branch v3.3.0 https://github.com/soedinglab/hh-suite.git /tmp/hh-suite \
&& mkdir /tmp/hh-suite/build
WORKDIR /tmp/hh-suite/build
RUN cmake -DCMAKE_INSTALL_PREFIX=/opt/hhsuite .. \
&& mkdir /tmp/hh-suite/build \
&& pushd /tmp/hh-suite/build \
&& cmake -DCMAKE_INSTALL_PREFIX=/opt/hhsuite .. \
&& make -j 4 && make install \
&& ln -s /opt/hhsuite/bin/* /usr/bin \
&& popd \
&& rm -rf /tmp/hh-suite
# Install Miniconda package manger.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment