{"id":18485261,"url":"https://github.com/softinstigate/graalvm-docker","last_synced_at":"2026-04-14T23:31:33.151Z","repository":{"id":87382208,"uuid":"369235511","full_name":"SoftInstigate/graalvm-docker","owner":"SoftInstigate","description":"A docker image for GraalVM built with sdkman","archived":false,"fork":false,"pushed_at":"2026-03-10T14:17:43.000Z","size":61,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-03-10T20:40:39.100Z","etag":null,"topics":["docker","docker-image","graalvm","graalvm-native-image","java"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SoftInstigate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-20T14:25:31.000Z","updated_at":"2026-03-10T14:10:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"bd9ddd37-1fb3-4a62-935f-2ef7a08f5a75","html_url":"https://github.com/SoftInstigate/graalvm-docker","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/SoftInstigate/graalvm-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftInstigate%2Fgraalvm-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftInstigate%2Fgraalvm-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftInstigate%2Fgraalvm-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftInstigate%2Fgraalvm-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SoftInstigate","download_url":"https://codeload.github.com/SoftInstigate/graalvm-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SoftInstigate%2Fgraalvm-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31819717,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-image","graalvm","graalvm-native-image","java"],"created_at":"2024-11-06T12:44:40.570Z","updated_at":"2026-04-14T23:31:33.142Z","avatar_url":"https://github.com/SoftInstigate.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# graalvm-docker\n\n# GraalVM Docker Image\n\nOptimized multi-architecture GraalVM Docker images for [RESTHeart](https://restheart.org).\n\n- **GraalVM:** 25.0.2\n- **Architectures:** linux/amd64, linux/arm64\n- **Base:** Debian stable-slim / Distroless\n\n## Images\n\n### Distroless (Default) - Recommended\n\n**285MB** | `softinstigate/graalvm:25`\n\n- ✅ No shell (maximum security)\n- ✅ Runs as non-root (UID 65532)\n- ✅ 90% fewer CVEs\n- ✅ Cannot exec into container\n\n```bash\ndocker run --rm -v \"$PWD\":/opt/app \\\n  softinstigate/graalvm:25 \\\n  -jar /opt/app/restheart.jar\n```\n\n### With Shell - For Debugging\n\n**365MB** | `softinstigate/graalvm:25-shell`\n\n- ✅ Has `/bin/sh` for debugging\n- ✅ Can `docker exec` into container\n\n```bash\ndocker run -it softinstigate/graalvm:25-shell /bin/sh\n```\n\n## Tags\n\n**Distroless:**\n- `latest`, `25`, `25.0`, `25.0.2`\n\n**Shell:**\n- `25-shell`, `25.0-shell`, `25.0.2-shell`\n\nAll tags support **amd64** and **arm64** automatically.\n\n## What's Included\n\n- ✅ GraalVM JDK 25 (HotSpot + GraalVM JIT)\n- ✅ All Java standard libraries\n- ✅ Headless mode (no GUI)\n- ✅ HTTPS/TLS support\n\n## What's Removed (Size Optimization)\n\n- ❌ GUI libraries (AWT, Swing, JavaFX) - 20MB\n- ❌ Native-image build tools - 37MB\n- ❌ Static libraries - 183MB\n- ❌ SubstrateVM components - 64MB\n- ❌ jmods - 110MB\n- ❌ Samples/demos - 60MB\n\n**Result:** 68% size reduction (878MB → 285MB)\n\n## Dockerfile\n\n```dockerfile\nFROM softinstigate/graalvm:25\nCOPY app.jar /opt/app/\nCMD [\"-jar\", \"/opt/app/app.jar\"]\n```\n\n## Docker Compose\n\n```yaml\nservices:\n  app:\n    image: softinstigate/graalvm:25\n    command: [\"-jar\", \"/opt/app/app.jar\"]\n    volumes:\n      - ./:/opt/app\n```\n\n## Building\n\n```bash\n# Local\ndocker build -f Dockerfile.distroless -t myimage:25 .\ndocker build -t myimage:25-shell .\n\n# Multi-arch\n./build-multiarch.sh\n\n# CI/CD (automatic on git tag)\ngit tag v25.0.2 \u0026\u0026 git push origin v25.0.2\n```\n\n## Debugging Distroless\n\nSince distroless has no shell:\n\n```bash\n# Use remote debugging\ndocker run -p 5005:5005 softinstigate/graalvm:25 \\\n  -agentlib:jdwp=transport=dt_socket,server=y,address=*:5005 \\\n  -jar /opt/app/app.jar\n\n# Or use shell variant\ndocker run -it softinstigate/graalvm:25-shell /bin/sh\n```\n\n## Security\n\n**Distroless:**\n- No shell → Cannot exec\n- No package manager → Cannot install tools\n- Non-root → Cannot escalate\n- Minimal binaries → 90% fewer CVEs\n\n**Shell variant:**\n- Standard Debian security\n- Has shell for debugging\n- Runs as root (configurable)\n\n## Multi-Architecture\n\nWorks on:\n- Intel/AMD (x86_64)\n- Apple Silicon (M1/M2/M3)\n- AWS Graviton\n- ARM servers\n\nDocker automatically pulls the correct architecture.\n\n## License\n\nApache 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftinstigate%2Fgraalvm-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoftinstigate%2Fgraalvm-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftinstigate%2Fgraalvm-docker/lists"}