Skip to content

Commit

Permalink
Merge pull request #193 from parkervcp/java-21
Browse files Browse the repository at this point in the history
add java 21
  • Loading branch information
parkervcp authored Oct 18, 2023
2 parents e205284 + 1f47802 commit 171b3d8
Show file tree
Hide file tree
Showing 2 changed files with 30 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 @@ -24,6 +24,7 @@ jobs:
# - 16j9
- 17
- 19
- 21
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
Expand Down
29 changes: 29 additions & 0 deletions java/21/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:21-jdk-jammy

LABEL author="Michael Parker" maintainer="[email protected]"

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

RUN apt update -y \
&& apt install -y \
curl \
lsof \
ca-certificates \
openssl \
git \
tar \
sqlite3 \
fontconfig \
tzdata \
iproute2 \
libfreetype6

## Setup user and working directory
RUN useradd -m -d /home/container -s /bin/bash container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

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

0 comments on commit 171b3d8

Please sign in to comment.