mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-21 21:36:30 +00:00
20 lines
482 B
Docker
20 lines
482 B
Docker
# Based on Dockerfile by Mahdi Lazraq
|
|
|
|
FROM eclipse-temurin:21-jre
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
unzip \
|
|
xvfb \
|
|
libxrender1 \
|
|
libxtst6 \
|
|
libxi6 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ADD https://github.com/jindrapetrik/jpexs-decompiler/releases/download/version26.0.0/ffdec_26.0.0.zip /opt/ffdec.zip
|
|
RUN cd /opt && unzip ffdec.zip -d ffdec && rm ffdec.zip
|
|
|
|
WORKDIR /work
|
|
|
|
ENTRYPOINT ["java", "-jar", "/opt/ffdec/ffdec.jar"]
|
|
|