File: Dockerfile

package info (click to toggle)
sortmerna 4.3.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 134,048 kB
  • sloc: cpp: 24,424; ansic: 15,923; python: 1,453; sh: 224; makefile: 31
file content (11 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11

FROM ubuntu:16.04


COPY . /sortmerna

RUN apt-get update && apt-get install -y make g++ zlib1g-dev python2.7 python-pip python-numpy python-scipy python-tk

RUN cd /sortmerna && ./configure && make && make install

RUN pip install --upgrade pip && pip install scikit-bio==0.2.3