From 1690b84afe29ea30241b9bd482a3087049d689cc Mon Sep 17 00:00:00 2001 From: Kas-tle <26531652+Kas-tle@users.noreply.github.com> Date: Wed, 11 Oct 2023 19:26:52 -0700 Subject: [PATCH] Use temurin as openjdk docker is deprecated --- pterodactyl-geyser/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pterodactyl-geyser/Dockerfile b/pterodactyl-geyser/Dockerfile index f995c16..ab0e7f3 100644 --- a/pterodactyl-geyser/Dockerfile +++ b/pterodactyl-geyser/Dockerfile @@ -3,12 +3,12 @@ # Environment: Java (glibc support) # Minimum Panel Version: 0.6.0 # ---------------------------------- -FROM openjdk:17-slim +FROM eclipse-temurin:17-jdk-jammy LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" RUN apt-get update -y \ - && apt-get install -y curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 tzdata iproute2 libstdc++6 \ + && apt-get install -y lsof curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 tzdata iproute2 libstdc++6 \ && useradd -d /home/container -m container USER container