Skip to content

Commit

Permalink
feat: update and add shipilev-openjdk
Browse files Browse the repository at this point in the history
  • Loading branch information
Software-Noob authored Jul 21, 2024
1 parent b550334 commit ace677a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/java-shenandoah.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build java_shenandoah
name: build java_shenandoah (shipilev openjdk)

on:
workflow_dispatch:
Expand Down Expand Up @@ -29,6 +29,7 @@ jobs:
- 8
- 11
- 17
- 21
steps:
- name: Git checkout for Github repository workspace
uses: actions/checkout@v4
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,16 +143,18 @@ Navigate to `Admin Panel -> Nests -> Select your egg`. Add Docker image URL(s) f
- [Java 21 OpenJ9](https://github.com/Software-Noob/pterodactyl-images/tree/main/java-openj9/21)
- `ghcr.io/software-noob/pterodactyl-images:java_21_openj9`

### Java Shenandoah Nightly [AMD64/ARM64]
### Java Shipilev Experimental [AMD64/ARM64]

These are nightly builds. Shenandoah GC is by default shipped with Azul, Corretto and Temurin starting with Java 11
These are [shipilev experimental builds.](https://builds.shipilev.net/) If you're looking for Shenandoah GC, it is also by default shipped with at least Azul, Corretto and Temurin images starting with Java 11.

- [Java 8 Shenandoah](https://github.com/Software-Noob/pterodactyl-images/tree/main/java-shenandoah/8)
- `ghcr.io/software-noob/pterodactyl-images:java_8_shenandoah`
- [Java 11 Shenandoah](https://github.com/Software-Noob/pterodactyl-images/tree/main/java-shenandoah/11)
- `ghcr.io/software-noob/pterodactyl-images:java_11_shenandoah`
- [Java 17 Shenandoah](https://github.com/Software-Noob/pterodactyl-images/tree/main/java-shenandoah/17)
- `ghcr.io/software-noob/pterodactyl-images:java_17_shenandoah`
- [Java 21 Shenandoah](https://github.com/Software-Noob/pterodactyl-images/tree/main/java-shenandoah/21)
- `ghcr.io/software-noob/pterodactyl-images:java_21_shenandoah`

### Node.js [AMD64/ARM64]

Expand Down
23 changes: 23 additions & 0 deletions java-shenandoah/21/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM shipilev/openjdk:21

LABEL author="Softwarenoob" maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/Software-Noob/pterodactyl-images"
LABEL org.opencontainers.image.licenses="MIT"

RUN apt-get update -y \
&& apt-get install -y --no-install-recommends curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 libstdc++6 lsof build-essential tzdata iproute2 locales \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd -m -d /home/container container \
&& locale-gen en_US.UTF-8

ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion java-shenandoah/8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM shipilev/openjdk-shenandoah:8
FROM shipilev/openjdk:8

LABEL author="Softwarenoob" maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/Software-Noob/pterodactyl-images"
Expand Down

0 comments on commit ace677a

Please sign in to comment.