File: Dockerfile

package info (click to toggle)
scrappie 1.4.2-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 61,724 kB
  • sloc: ansic: 114,526; python: 1,586; makefile: 160; sh: 122
file content (13 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM debian:stretch
MAINTAINER Tim Massingham <tim.massingham@nanoporetech.com>
RUN apt-get update && apt-get install -y --no-install-recommends  \
    ca-certificates gcc git libopenblas-dev libhdf5-dev cmake make libcunit1-dev
RUN git clone --depth 1 https://github.com/nanoporetech/scrappie.git

RUN cd scrappie && \
    mkdir build && \
    cd build && \
    cmake .. && \
    make && \
    make test