forked from greenelab/continuous_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (30 loc) · 696 Bytes
/
Dockerfile
File metadata and controls
33 lines (30 loc) · 696 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
# Example Minimalist Base Docker Image
# Start with Ubuntu base image
FROM ubuntu:14.04
MAINTAINER Brett Beaulieu-Jones <brettbe@med.upenn.edu>
# install python depencies for plotting
RUN apt-get update && apt-get install -y \
build-essential \
git \
pkg-config \
python-matplotlib \
libpng-dev \
libfreetype6 \
libfreetype6-dev \
python3-dev \
python3-pip \
python3-numpy \
python3-scipy \
cmake \
zlib1g-dev \
libhdf5-dev
RUN pip3 install seaborn && \
pip3 install jupyter && \
pip3 install nose2 && \
pip3 install coverage
RUN git clone https://github.com/pachterlab/kallisto.git
RUN mkdir /kallisto/build
RUN cd kallisto/build && \
cmake .. && \
make && \
make install