-
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.
- Loading branch information
Showing
3 changed files
with
3 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM bitnami/minideb:latest | |
|
||
LABEL maintainer="SoftInstigate <[email protected]>" | ||
|
||
ARG JAVA_VERSION="17.0.9-graal" | ||
ARG JAVA_VERSION="21.0.2-graal" | ||
|
||
ENV SDKMAN_DIR=/root/.sdkman | ||
|
||
|
@@ -22,7 +22,6 @@ RUN apt-get update \ | |
RUN bash -c "source "${SDKMAN_DIR}"/bin/sdkman-init.sh \ | ||
&& sdk version \ | ||
&& sdk install java "${JAVA_VERSION}" \ | ||
&& gu install js \ | ||
&& rm -rf "${SDKMAN_DIR}"/archives/* \ | ||
&& rm -rf "${SDKMAN_DIR}"/tmp/*" | ||
|
||
|
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 @@ | ||
#!/bin/bash | ||
|
||
docker build --build-arg JAVA_VERSION="22.2.r17-grl" --no-cache . -t softinstigate/graalvm | ||
docker build --no-cache . -t softinstigate/graalvm | ||
docker tag softinstigate/graalvm:latest softinstigate/graalvm:latest |