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

BWA: add docker files

parent aac64942
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV BWA_VERSION=0.7.17
ENV PACKAGES curl=7.58.0* \
ca-certificates=20180409 \
build-essential=12.4* \
zlib1g-dev=1:1.2.11*
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN curl -k -L https://github.com/lh3/bwa/releases/download/v${BWA_VERSION}/bwa-${BWA_VERSION}.tar.bz2 -o bwa-v${BWA_VERSION}.tar.bz2 && \
tar xjf bwa-v${BWA_VERSION}.tar.bz2 && \
cd bwa-${BWA_VERSION}/ && \
make && \
cp bwa /usr/bin && \
cd .. && \
rm -R bwa-${BWA_VERSION}/
#!/bin/sh
docker build src/docker_modules/BWA/0.7.17 -t 'bwa:0.7.17'
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