[d15511]: / Dockerfile

Download this file

20 lines (12 with data), 491 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
FROM khanlab/hippunfold_deps:v0.5.1
MAINTAINER alik@robarts.ca
COPY . /src/
# avoid pre-downloading the models to make for lighter container
# ENV HIPPUNFOLD_CACHE_DIR=/opt/hippunfold_cache
ENV PYTHONNOUSERSITE=1
#install hippunfold and imagemagick (for reports)
RUN pip install --no-cache-dir /src && \
apt install -y graphviz && \
wget https://imagemagick.org/archive/binaries/magick && \
mv magick /usr/bin && chmod a+x /usr/bin/magick
ENTRYPOINT [ "hippunfold" ]