Skip to content

Commit

Permalink
minor changes in the Dockerfile; version string
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Weimann committed Mar 4, 2016
1 parent 37b9ce2 commit f96fa34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,15 @@
# Set the base image to use to Ubuntu
FROM ubuntu:14.04

# Set the file maintainer (your name - the file's author)
RUN apt-get update
MAINTAINER Aaron Weimann
# Update the default application repository sources list
MAINTAINER Aaron Weimann ([email protected])
RUN apt-get install -y python-scipy python-matplotlib python-pip python-pandas
RUN echo "deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse ">> /etc/apt/sources.list
RUN sudo apt-get update
RUN apt-get install -y hmmer prodigal
RUN apt-get install -y wget
COPY dist/traitar-0.1.6.tar.gz /tmp
COPY dist/traitar-1.0.0.tar.gz /tmp
COPY traitar/data/sample_data /tmp/sample_data
RUN pip install /tmp/traitar-0.1.6.tar.gz
RUN pip install /tmp/traitar-1.0.0.tar.gz
COPY Pfam-A.hmm /tmp
RUN traitar pfam --local /tmp
2 changes: 1 addition & 1 deletion traitar/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.7"
__version__ = "1.0.0"

0 comments on commit f96fa34

Please sign in to comment.