-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use temurin as openjdk docker is deprecated
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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="[email protected]" | ||
|
||
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 | ||
|