Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caizixian/dacapo-docker
https://github.com/caizixian/dacapo-docker
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/caizixian/dacapo-docker
- Owner: caizixian
- License: apache-2.0
- Created: 2024-08-14T01:43:56.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-20T10:52:49.000Z (3 months ago)
- Last Synced: 2024-08-21T13:11:54.115Z (3 months ago)
- Language: Dockerfile
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DaCapo benchmarks development container
## Setup
```bash
git clone https://github.com/dacapobench/dacapobench
cd dacapobench/benchmarks
cp default.properties local.properties
sed -i s/java-1.11.0-openjdk-amd64/temurin-11-jdk-amd64/ local.properties
cd ..
docker run -it --rm -v $PWD:/dacapobench -v /etc/passwd:/etc/passwd -v /etc/group:/etc/group -u $(id -u $USER):$(id -g $USER) ghcr.io/caizixian/dacapo-docker:master bash
cd dacapobench/benchmarks
ant # build all benchmarks
```The `-u` makes sure that the produced build has the right permission on your host machine.
If you are using rootless podman, please substitute the docker command with the following.
```bash
podman run -it --rm -v $PWD:/dacapobench ghcr.io/caizixian/dacapo-docker:master bash
```