Skip to content

Commit

Permalink
Add graalvm for java 8
Browse files Browse the repository at this point in the history
Signed-off-by: C0D3 M4513R <28912031+C0D3-M4513R@users.noreply.github.com>
  • Loading branch information
C0D3-M4513R committed Dec 7, 2024
1 parent 26eda4a commit 73a48e5
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
matrix:
tag:
- 8
- 8-graalvm
- 8j9
- 11
- 11j9
Expand Down
47 changes: 47 additions & 0 deletions java/8-graalvm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#
# Copyright (c) 2021 Matthew Penner
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#

FROM --platform=$TARGETOS/$TARGETARCH debian:latest

#LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"

LABEL org.opencontainers.image.source="https://github.com/C0d3-m4513r/yolks"
LABEL org.opencontainers.image.licenses=MIT

RUN apt-get update -y \
&& apt-get install -y btrfs-progs lsof curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 tzdata iproute2 libstdc++6 && rm -rf /var/lib/apt/lists/* \
&& curl -o /graalvm.tar.gz -L https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-21.2.0/graalvm-ce-java8-linux-amd64-21.2.0.tar.gz \
&& echo "0ea16ff2fe178800195e2918ee7ceee352601d4161a17eac67979febaaecfe05 graalvm.tar.gz" | sha256sum -c - \
&& mkdir /graalvm && tar -xzf /graalvm.tar.gz -C /graalvm --strip-components=1 \
&& rm /graalvm.tar.gz \
&& chmod -R 755 /graalvm \
&& useradd -d /home/container -m container \
&& chown -R container /graalvm && chmod +x /graalvm/bin/java

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
ENV JAVA_HOME="/graalvm"
ENV PATH="$JAVA_HOME/bin:$PATH"

COPY ./../entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]

0 comments on commit 73a48e5

Please sign in to comment.