FROM ubuntu:14.04 
WORKDIR /tmp
RUN apt-get update && apt-get install -y unzip
ADD bowtie-0.12.7-linux-x86_64.zip bowtie.zip 
RUN unzip bowtie.zip && mv bowtie-0.12.7 bowtie
RUN apt-get update && apt-get install -y python-pip
RUN apt-get update
RUN apt-get install python2.7
ENV PATH $PATH:/tmp/bowtie 
