Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions images/streammd/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
ARG ST_VERSION=1.21-1

FROM australia-southeast1-docker.pkg.dev/cpg-common/images/samtools:${ST_VERSION}

# the streammd version
ARG VERSION=4.3.0

# Install the runtime shared libraries that the compiled htslib may depend on
RUN apt-get update && apt-get install -y \
cmake \
g++ \
gcc \
git \
make \
wget \
&& rm -rf /var/lib/apt/lists/* && \
wget https://github.com/delocalizer/streammd/releases/download/${VERSION}/streammd-${VERSION}.tar.gz && \
tar -xzvf streammd-${VERSION}.tar.gz && \
cd streammd-${VERSION} && \
./configure && \
make && \
make check && \
make install && \
cd .. && \
rm -r streammd-${VERSION} && \
streammd --help