forked from aweimann/traitar
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor changes in the Dockerfile; version string
- Loading branch information
Aaron Weimann
committed
Mar 4, 2016
1 parent
37b9ce2
commit f96fa34
Showing
2 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.7" | ||
__version__ = "1.0.0" |