-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
30 lines (19 loc) · 946 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
24
25
26
27
28
FROM python:3.5
MAINTAINER Andre Lamurias (alamurias@lasige.di.fc.ul.pt)
RUN apt-get update && apt-get install -y git && apt-get autoclean -y
RUN apt-get update && apt-get install -y wget && apt-get autoclean -y
RUN apt-get update && apt-get install -y unrar-free && apt-get autoclean -y
#RUN echo "deb http://http.debian.net/debian jessie-backports main" | \
# tee --append /etc/apt/sources.list.d/jessie-backports.list > /dev/null
#RUN apt-get update && apt-get install -y -t jessie-backports openjdk-8-jdk
#RUN update-java-alternatives -s java-1.8.0-openjdk-amd64
RUN apt-get update && apt-get install -y default-jdk && apt-get autoclean -y
COPY ./requirements.txt ./
RUN pip3 install -r requirements.txt
RUN git clone https://github.com/AndreLamurias/obonet.git
RUN cd obonet && python3 setup.py install
#RUN mkdir temp/
#RUN mkdir candidates/
#COPY chebi_pop chebi_pop
#COPY hpo_pop hpo_pop
#COPY ChebiPatents/ ChebiPatents/