forked from dadoonet/fscrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Generate FSCrawler docker images * Use apt command and Specify libs version * Skip the executions for IT * Add a parameter to skip to build docker images. * Add a new section about docker in getting_started * Specify minor version to avoid OS version upgrade.
- Loading branch information
Showing
6 changed files
with
360 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM openjdk:8u222-jdk | ||
|
||
ARG langsPkg | ||
RUN set -ex \ | ||
&& apt update \ | ||
&& apt install -y --no-install-recommends \ | ||
"gettext-base=0.19.*" \ | ||
${langsPkg} \ | ||
&& apt clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY maven /usr/share/fscrawler | ||
RUN set -ex \ | ||
&& ln -sn /usr/share/fscrawler/bin/fscrawler /usr/bin/ | ||
|
||
WORKDIR /usr/share/fscrawler |
Oops, something went wrong.