Files
jpexs-decompiler/Dockerfile
github-actions[bot] 792d2c2fc8 chore: change version to 26.2.1
[ci skip]
2026-05-24 17:01: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.2.1/ffdec_26.2.1.zip /opt/ffdec.zip
RUN cd /opt && unzip ffdec.zip -d ffdec && rm ffdec.zip
WORKDIR /work
ENTRYPOINT ["java", "-jar", "/opt/ffdec/ffdec.jar"]