-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03cb3e5
commit 231a9dd
Showing
2 changed files
with
5 additions
and
7 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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
FROM ubuntu:16.04 | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt update | ||
RUN apt install -y python2.7 python-pip perl | ||
RUN apt install -y python3 python3-pip perl libncursesw5 | ||
RUN perl -MCPAN -e 'install XML::Simple' | ||
ADD requirements.txt /requirements.txt | ||
RUN cat requirements.txt | xargs -n 1 pip install | ||
ADD *.py /usr/local/bin/ | ||
ADD scripts /usr/local/bin/scripts | ||
ADD tools /usr/local/bin/tools | ||
ADD defaults /usr/local/bin/defaults | ||
ADD ete2.patch / | ||
RUN patch /usr/local/lib/python2.7/dist-packages/ete2/ncbi_taxonomy/ncbiquery.py ete2.patch | ||
WORKDIR /usr/local/bin | ||
ENTRYPOINT ["python"] | ||
ENTRYPOINT ["python3"] |
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