Rename DockerFile to Dockerfile (#76)

This commit is contained in:
Daniel Barton
2022-09-28 20:58:08 +08:00
committed by GitHub
parent e8947cb71b
commit 885373a1d5

17
java/19/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM --platform=$TARGETOS/$TARGETARCH openjdk:19-slim
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 ca-certificates openssl git tar sqlite3 fontconfig tzdata iproute2 libfreetype6 \
&& useradd -d /home/container -m container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]