-
Notifications
You must be signed in to change notification settings - Fork 1
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 #235 from kit-data-manager/development
PR for v1.0.2
- Loading branch information
Showing
11 changed files
with
106 additions
and
66 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
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 |
---|---|---|
|
@@ -11,15 +11,16 @@ ARG SERVICE_ROOT_DIRECTORY_DEFAULT=/spring/ | |
#################################################### | ||
# Building environment (java & git) | ||
#################################################### | ||
FROM python:3.10 AS build-env-java | ||
FROM python:3.13 AS build-env-java | ||
LABEL [email protected] | ||
LABEL stage=build-env | ||
|
||
# Install git as additional requirement | ||
RUN apt-get update && \ | ||
apt-get upgrade --no-install-recommends --assume-yes && \ | ||
apt-get install --no-install-recommends --assume-yes git && \ | ||
apt-get install --no-install-recommends --assume-yes openjdk-17-jdk && \ | ||
wget https://download.oracle.com/java/21/latest/jdk-21_linux-x64_bin.deb && \ | ||
dpkg -i jdk-21_linux-x64_bin.deb && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
|
@@ -50,7 +51,7 @@ RUN bash ./build4docker.sh $SERVICE_DIRECTORY | |
#################################################### | ||
# Runtime environment 4 indexing-service | ||
#################################################### | ||
FROM python:3.10 AS run-service-indexing | ||
FROM python:3.13 AS run-service-indexing | ||
LABEL [email protected] | ||
LABEL stage=run | ||
|
||
|
@@ -67,7 +68,8 @@ ENV REPO_PORT=${REPO_PORT_DEFAULT} | |
# Install JDK17 | ||
RUN apt-get update && \ | ||
apt-get upgrade --no-install-recommends --assume-yes && \ | ||
apt-get install --no-install-recommends --assume-yes openjdk-17-jdk && \ | ||
wget https://download.oracle.com/java/21/latest/jdk-21_linux-x64_bin.deb && \ | ||
dpkg -i jdk-21_linux-x64_bin.deb && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
|
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
Binary file not shown.
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,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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.