forked from lotts/GLASSgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (30 loc) · 1004 Bytes
/
Dockerfile
File metadata and controls
36 lines (30 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
############################################################
# Dockerfile to build GLASSgo Containers
# Based on Ubuntu
############################################################
# Set the base image to Ubuntu
FROM ubuntu
# File Author / Maintainer
MAINTAINER Steffen C. Lott
# Update the sources list
RUN apt-get update
RUN apt-get install -y gcc
RUN apt-get install -y python python-pip
RUN pip install --upgrade pip
RUN apt-get install -y python3 wget python3-pip
RUN pip3 install --upgrade pip
RUN pip3 install numpy
RUN pip3 install biopython
RUN apt-get install -y ncbi-blast+
RUN apt-get install -y clustalo
RUN apt-get install -y bioperl
RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:j-4/vienna-rna
RUN apt-get update
RUN apt-get install -y vienna-rna
# Copy the application folder inside the container
ADD /GLASSgo_v152 /bin/GLASSgo/
# Set the default directory where CMD will execute
WORKDIR /bin/GLASSgo/
# Setup Path
ENV PATH "PATH=$PATH:/bin/GLASSgo/"