-
Notifications
You must be signed in to change notification settings - Fork 4
Manual project build
Łukasz Szeremeta edited this page Apr 16, 2021
·
2 revisions
You need Java with Maven installed.
- 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.
- 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.
You need Docker installed.
- 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.
- Go to the project directory and build a Docker image:
cd SDFEater
docker build -t sdfeater .
- 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
.