add java 21
This commit is contained in:
1
.github/workflows/java.yml
vendored
1
.github/workflows/java.yml
vendored
@@ -24,6 +24,7 @@ jobs:
|
|||||||
# - 16j9
|
# - 16j9
|
||||||
- 17
|
- 17
|
||||||
- 19
|
- 19
|
||||||
|
- 21
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: docker/setup-qemu-action@v2
|
- uses: docker/setup-qemu-action@v2
|
||||||
|
29
java/21/Dockerfile
Normal file
29
java/21/Dockerfile
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:21-jdk-jammy
|
||||||
|
|
||||||
|
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
||||||
|
|
||||||
|
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" ]
|
Reference in New Issue
Block a user