frohoff / frohoff/ysoserial

Workaround for compilation failure and other Java versions

Open
#229 2 comments 3 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
9.1k
Forks
1.9k
PR merge metrics
No merged PRs in 30d

Description

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
```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 .
```

2. Run container
```
docker run --rm ysoserial [Command]
```

Workaround for #228

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.