Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM openjdk:8-jdk-alpine3.9
RUN apk update and apk add
RUN apk add --update maven

RUN apk add --update git
RUN git clone https://github.com/lajus/amie-utils
RUN cd amie-utils/javatools/ && mvn install
COPY ./. /
CMD ["mvn", "clean", "install"]
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ AMIE is managed with [Maven](https://maven.apache.org/), therefore to deploy you
* IDEs such as Eclipse offer the option to create a project from an existing Maven project. The IDE will call Maven to compile the code.
3. Maven will generate an executable jar named amie3.jar in a new "bin/" directory. This executable accepts RDF files in TSV format [like this one](http://resources.mpi-inf.mpg.de/yago-naga/amie/data/yago2_sample/yago2core.10kseedsSample.compressed.notypes.tsv) as input, but also other format described below. To run it, just write in your comand line:

## Build and test AMIE with docker
` docker build --no-cache -t amie:latest -f ./Dockerfile . `

` docker run -it amie:latest mvn test `

## Publications

> Jonathan Lajus, Luis Galárraga, Fabian M. Suchanek:
Expand Down