Files
jpexs-decompiler/Dockerfile
github-actions[bot] 9503e66a09 chore: change version to 26.0.0
[ci skip]
2026-04-06 19:41:45 +00:00

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"]