Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for compilation failure and other Java versions #229

Open
MatrixEditor opened this issue Oct 22, 2024 · 1 comment
Open

Workaround for compilation failure and other Java versions #229

MatrixEditor opened this issue Oct 22, 2024 · 1 comment

Comments

@MatrixEditor
Copy link

In case you are stuck with compilation/build errors you can try to use ysoserial-all.jar from the releases page in a docker container. (just a dirty workaround you possibly already knew) Use the recommended fix in #203 if you don't want to use docker.

Dockerfile

FROM openjdk:8-jdk-alpine
WORKDIR /app
COPY ./ysoserial-all.jar .
ENTRYPOINT ["java", "-jar", "ysoserial-all.jar"]
  1. Build image
docker build -t ysoserial .
  1. Run container
docker run --rm ysoserial [Command]

Workaround for #228

@Bl4shyrkh
Copy link

TY!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants