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

sambamba: add Docker files

parent 05dfb3b0
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV SAMBAMBA_VERSION=0.6.7
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/biod/sambamba/releases/download/v${SAMBAMBA_VERSION}/sambamba_v${SAMBAMBA_VERSION}_linux.tar.bz2 -o sambamba_v${SAMBAMBA_VERSION}_linux.tar.bz2 && \
tar xvjf sambamba_v${SAMBAMBA_VERSION}_linux.tar.bz2 && \
mv sambamba /usr/bin/ && \
rm -R sambamba_v${SAMBAMBA_VERSION}_linux*
#!/bin/sh
docker build src/docker_modules/sambamba/0.6.7 -t 'sambamba:0.6.7'
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