forked from levinas/kb_sdk_ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
40 lines (28 loc) · 1.15 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM kbase/kbase:sdkbase.latest
# FROM kbase/kbase:interprodata
MAINTAINER KBase Developer
# -----------------------------------------
# Insert apt-get instructions here to install
# any required dependencies for your module.
# RUN apt-get update
# -----------------------------------------
RUN apt-get install libffi-dev libssl-dev
RUN pip install --upgrade requests[security]
# RUN apt-add-repository ppa:webupd8team/java
# RUN apt-get update
# RUN apt-get -q install -y oracle-java8-installer
# Install InterProScan
# RUN \
# echo 'Downloading big interproscan file...' && \
# wget -nv ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/5.18-57.0/interproscan-5.18-57.0-64-bit.tar.gz && \
# tar xf interproscan-5.18-57.0-64-bit.tar.gz && \
# mv interproscan-5.18-57.0 /kb/deployment/interproscan && \
# echo 'export INTERPROSCAN_INSTALL=/kb/deployment/interproscan' >> /kb/deployment/user-env.sh && \
# echo 'export PATH=$PATH:$INTERPROSCAN_INSTALL' >> /kb/deployment/user-env.sh
# Copy local wrapper files, and build
COPY ./ /kb/module
RUN mkdir -p /kb/module/work
WORKDIR /kb/module
RUN make
ENTRYPOINT [ "./scripts/entrypoint.sh" ]
CMD [ ]