Skip to content
Snippets Groups Projects
Unverified Commit cc105980 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

docker: add bamutils 1.0.14

parent bb06add8
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV BAMUTILS_VERSION=1.0.14
ENV PACKAGES git \
build-essential \
g++ \
libssl-dev \
zlib1g-dev
RUN apt-get update && apt-get -y install ${PACKAGES}
RUN git clone https://github.com/statgen/libStatGen && \
cd libStatGen && \
git checkout fae4fca874b3b78bf9b61c0 && \
make && \
cd ../ && \
git clone https://github.com/statgen/bamUtil && \
cd bamUtil && \
git checkout v${BAMUTILS_VERSION} && \
make && \
make install
#!/bin/sh
docker pull lbmc/bamutils:1.0.14
docker build src/.docker_modules/bamutils/1.0.14 -t 'lbmc/bamutils:1.0.14'
docker push lbmc/bamutils:1.0.14
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment