-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from HBPMedical/master
Merge latest HBPmedical/algorithm-repository to bldrvnlw fork
- Loading branch information
Showing
70 changed files
with
2,784 additions
and
1,931 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM hbpmip/java-base-build:3.5.0-jdk-8-6 as build-java-env | ||
FROM hbpmip/java-base-build:3.5.0-jdk-8-8 as build-java-env | ||
|
||
COPY pom.xml /project/pom.xml | ||
COPY src/ /project/src | ||
|
@@ -7,17 +7,17 @@ COPY src/ /project/src | |
RUN cp /usr/share/maven/ref/settings-docker.xml /root/.m2/settings.xml \ | ||
&& mvn package site | ||
|
||
FROM hbpmip/java-rapidminer:0.4.1 | ||
FROM hbpmip/java-rapidminer:0.9.0 | ||
|
||
MAINTAINER [email protected] | ||
|
||
ENV DOCKER_IMAGE=hbpmip/java-rapidminer-knn:0.1.0 | ||
ENV JAVA_CLASSPATH=${JAVA_CLASSPATH}:/usr/share/jars/java-rapidminer-knn.jar | ||
ENV JAVA_ARGS=eu.hbp.mip.container.rapidminer.models.Knn | ||
ENV MODEL knn | ||
ENV FUNCTION java-rapidminer-knn | ||
ENV DOCKER_IMAGE=hbpmip/java-rapidminer-knn:0.2.1 \ | ||
JAVA_CLASSPATH=${JAVA_CLASSPATH}:/usr/share/jars/java-rapidminer-knn.jar \ | ||
JAVA_ARGS=/eu/humanbrainproject/mip/algorithms/rapidminer/knn/settings.properties \ | ||
MODEL="k-NN" \ | ||
FUNCTION=java-rapidminer-knn | ||
|
||
COPY --from=build-java-env /project/target/java-rapidminer-knn.jar /usr/share/jars/java-rapidminer-knn.jar | ||
COPY --from=build-java-env /project/target/knn.jar /usr/share/jars/java-rapidminer-knn.jar | ||
COPY --from=build-java-env /project/target/site/ /var/www/html/ | ||
COPY src/ /src/ | ||
|
||
|
@@ -27,9 +27,9 @@ RUN chown -R compute:compute /src/ \ | |
LABEL org.label-schema.build-date=$BUILD_DATE \ | ||
org.label-schema.name="hbpmip/java-rapidminer-knn" \ | ||
org.label-schema.description="KNN algorithm" \ | ||
org.label-schema.url="https://github.com/LREN-CHUV/functions-repository" \ | ||
org.label-schema.url="https://github.com/LREN-CHUV/algorithm-repository" \ | ||
org.label-schema.vcs-type="git" \ | ||
org.label-schema.vcs-url="https://github.com/LREN-CHUV/functions-repository.git" \ | ||
org.label-schema.vcs-url="https://github.com/LREN-CHUV/algorithm-repository.git" \ | ||
org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.version="$VERSION" \ | ||
org.label-schema.vendor="LREN CHUV" \ | ||
|
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
Oops, something went wrong.