-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathdockerfile_base
More file actions
22 lines (14 loc) · 583 Bytes
/
dockerfile_base
File metadata and controls
22 lines (14 loc) · 583 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y g++ openjdk-8-jdk ruby git wget && apt-get clean
ARG SOURCE_DIR=/root/
ENV SOURCE_DIR=$SOURCE_DIR
WORKDIR ${SOURCE_DIR}
RUN echo "$PWD"
RUN git clone https://github.com/wala/graph4code.git
RUN wget http://mirror.metrocast.net/apache/jena/binaries/apache-jena-fuseki-3.16.0.tar.gz
RUN wget http://mirror.metrocast.net/apache/jena/binaries/apache-jena-3.16.0.tar.gz
RUN tar -xzf apache-jena-fuseki-3.16.0.tar.gz
RUN tar -xzf apache-jena-3.16.0.tar.gz
RUN mkdir /graph4code_db/
WORKDIR graph4code/scripts/
EXPOSE 3030