forked from nanoporetech/medaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
23 lines (20 loc) · 813 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM nvidia/cuda:11.2.2-cudnn8-runtime-ubuntu20.04
ENV DEBIAN_FRONTEND=noninteractive
LABEL maintainer="Oxford Nanopore Technologies"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN \
apt update \
&& apt install -yq --no-install-recommends \
ca-certificates build-essential cmake curl wget git \
zlib1g-dev libbz2-dev liblzma-dev libncurses5-dev libcurl4-gnutls-dev \
libssl-dev libffi-dev \
libreadline8 libreadline-dev sqlite3 libsqlite3-dev file \
python3-all-dev python3-venv python3-pip python3-setuptools \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3 10 \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
COPY . /tmp/medaka
RUN \
cd /tmp/medaka \
&& make install_root \
&& cd / \
&& rm -rf /tmp/medaka \