Skip to content

Manual project build

Łukasz Szeremeta edited this page Apr 16, 2021 · 2 revisions

Build SDFEater JARs from sources

You need Java with Maven installed.

  1. Clone this repository:
git clone https://github.com/lszeremeta/SDFEater.git

If you don't want or can't use git, you can download the zip archive and extract it.

  1. Go to the project directory and build SDFEater using Apache Maven:
cd SDFEater
mvn clean package

Built JAR files can be found in the target directory.

Local Docker build

You need Docker installed.

  1. Clone this repository:
git clone https://github.com/lszeremeta/SDFEater.git

If you don't want or can't use git, you can download the zip archive and extract it.

  1. Go to the project directory and build a Docker image:
cd SDFEater
docker build -t sdfeater .
  1. Run Docker container:
docker run -it --rm --name sdfeater-app --mount type=bind,source=/home/user/input,target=/app/input,readonly sdfeater

In this case, your local directory /home/user/input has been mounted under /app/input.

Clone this wiki locally