22 lines
783 B
Docker
22 lines
783 B
Docker
FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:19-jdk-focal
|
|
|
|
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 tini \
|
|
&& useradd -d /home/container -m container
|
|
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
WORKDIR /home/container
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
COPY --chown=container:container ./../entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
|
|
CMD ["/entrypoint.sh"]
|