-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
35 lines (23 loc) · 888 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
29
30
31
32
33
34
FROM schatzop/veto-ui:latest
RUN apt-get update && apt-get upgrade -y
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y git
RUN apt-get install jq -y
# install python 3.7
RUN apt install software-properties-common -y
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt-get update
RUN apt-get install python3.7 -y && \
apt install python3-pip -y
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1
# install pands
RUN pip3 install pandas
# install java 8
RUN apt-get install -y --no-install-recommends --assume-yes openjdk-8-jdk
ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/
# create appriate folders
RUN mkdir -p /dataX/VeTo/VeTo-data
RUN mkdir -p /dataX/VeTo/VeTo-results
RUN mkdir -p /dataX/VeTo/VeTo-workflows
# clone veto-workflows
RUN git clone https://github.com/schatzopoulos/VeTo-workflows.git /dataX/VeTo/VeTo-workflows