Skip to content
This repository was archived by the owner on Aug 17, 2022. It is now read-only.

Commit 42038da

Browse files
committed
Create Dockerfile
1 parent 2835930 commit 42038da

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#############################################################
2+
# Dockerfile to build a sample tool container for BAMStats
3+
#############################################################
4+
5+
# Set the base image to SeqWare
6+
FROM ubuntu:14.04
7+
8+
# File Author / Maintainer
9+
MAINTAINER Brian O'Connor <briandoconnor@gmail.com>
10+
11+
# Setup packages
12+
USER root
13+
RUN apt-get -m update && apt-get install -y apt-utils tar git curl nano wget dialog net-tools build-essential time
14+
15+
# get the tool
16+
RUN wget -q http://downloads.sourceforge.net/project/bamstats/BAMStats-1.25.zip
17+
RUN unzip BAMStats-1.25.zip
18+
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)