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

bcftools: add docker file and rm from SAMtools

parent a79c7a67
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,7 @@ FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV SAMTOOLS_VERSION=1.7
ENV BCFTOOLS_VERSION=1.7
ENV PACKAGES samtools=${SAMTOOLS_VERSION}* \
bcftools=${BCFTOOLS_VERSION}*
ENV PACKAGES samtools=${SAMTOOLS_VERSION}*
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
......
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV BCFTOOLS_VERSION=1.7
ENV PACKAGES bcftools=${BCFTOOLS_VERSION}*
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
#!/bin/sh
docker build src/docker_modules/bcftools/1.7 -t 'bcftools:1.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