forked from hsalis/SalisLabCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (20 loc) · 1.85 KB
/
Dockerfile
File metadata and controls
23 lines (20 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM ubuntu:18.04
LABEL Description="This Docker image is used to run software developed by the Salis Lab" Version="1.0"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y ubuntu-server
RUN apt-get update && apt-get install -y apt-utils
RUN apt-get update && apt-get install -y python-pip python-dev build-essential zip wget build-essential pypy graphviz nano \
apt-transport-https ca-certificates curl software-properties-common \
libreadline-gplv2-dev libncursesw5-dev libssl-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libssl-dev libffi-dev pandoc \
libcr-dev mpich mpich-doc \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
RUN pip install --upgrade virtualenv
RUN pip install biopython boto certifi configparser cycler python-dateutil numpy openpyxl pandas pexpect pickleshare prompt-toolkit==1.0.15 ptyprocess pyExcelerator deap decorator entrypoints enum34 functools32 ipykernel ipython pathos pygments pypandoc pyparsing pyquery pysvg python_dateutil pytz pyzmq jinja jsonschema scipy matplotlib mpi4py sympy slacker mpmath nbconvert nose xlrd xlwt terminado tornado wcwidth nbformat mistune gprof2dot pybloom_live psutil sortedcontainers sqlitedict bayesian-optimization networkx edlib npm requests boto3 python-memcached dnaplotlib Pillow faulthandler
RUN pip install --upgrade biopython networkx hyperloglog pybloom_live sqlitedict scipy numpy
RUN wget https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_4_x/ViennaRNA-2.4.11.tar.gz && \
tar xvfz ViennaRNA-2.4.11.tar.gz && \
cd ViennaRNA-2.4.11 && \
./configure PYTHON2_DIR='/usr/local/lib/python2.7/dist-packages' PYTHON2_EXECDIR='/usr/local/lib/python2.7/dist-packages' && \
make && \
make install