[27c943]: / docker / Dockerfile

Download this file

25 lines (14 with data), 517 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
FROM continuumio/anaconda3
USER root
RUN apt-get -y update && apt install -y build-essential
COPY spec-list.pathflow.txt .
RUN conda create --name default --file spec-list.pathflow.txt && \
rm spec-list.pathflow.txt
RUN apt-get install -y openslide-tools
COPY requirements.txt .
RUN pip install -r requirements.txt && \
rm requirements.txt
RUN pip install git+https://github.com/jlevy44/PathFlowAI.git
RUN install_apex
#ENTRYPOINT [ "/usr/bin/tini", "--" ]
CMD [ "/bin/bash" ]