{"id":18494980,"url":"https://github.com/qaware/debian8-jre8","last_synced_at":"2026-01-21T09:32:40.998Z","repository":{"id":71906736,"uuid":"56267832","full_name":"qaware/debian8-jre8","owner":"qaware","description":"A Debian 8 docker container with JRE8 installed.","archived":false,"fork":false,"pushed_at":"2016-04-17T21:49:26.000Z","size":54,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-14T03:15:17.341Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qaware.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}},"created_at":"2016-04-14T20:25:43.000Z","updated_at":"2016-05-01T18:57:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"81b5d329-7db5-404b-978f-06e19b89b8e7","html_url":"https://github.com/qaware/debian8-jre8","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/qaware/debian8-jre8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jre8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jre8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jre8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jre8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qaware","download_url":"https://codeload.github.com/qaware/debian8-jre8/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jre8/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28631150,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2024-11-06T13:22:57.826Z","updated_at":"2026-01-21T09:32:40.985Z","avatar_url":"https://github.com/qaware.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"[ ![Download](https://api.bintray.com/packages/qaware-oss/registry/base%3Adebian8-jre8/images/download.svg) ](https://bintray.com/qaware-oss/registry/base%3Adebian8-jre8/_latestVersion)\n\n# Debian 8 with Server JRE 8\n\nThis repository contains the `Dockerfile` for the `debian8-jre8` image. It is\nbased on the latest Debian 8 image and installs the Oracle Server JRE. The JRE\nis significantly smaller than the JDK and should be sufficient for most Java\nserver applications.\n\n## Build instructions\n\nWe use Gradle to build the Docker images. Of course you can also use the Docker\nCLI commands to create and upload the image.\n```shell\n$ ./gradlew buildDockerImage\n```\n\nNext we need to squash the image size. For this we will export a container based\non the image and import it as image again using plain Docker commands.\n```shell\ndocker run -d \u003cIMAGE_ID\u003e\ndocker export \u003cCONTAINER_ID\u003e | docker import - qaware-oss-docker-registry.bintray.io/base/debian8-jre8:\u003cVERSION\u003e\n```\n\n`\u003cIMAGE_ID\u003e` - The created image ID name.\n`\u003cCONTAINER_ID\u003e` - The container ID echoed after the Docker run command.\n`\u003cVERSION\u003e` - Should be the actual Java version, like 8u77. When not specified\n\"latest\" will be used as the Bintray version name.\n\n## Pushing image to Bintray\n\nTag the latest image according to the following convention by running the following command:\n```shell\ndocker tag \u003cIMAGE_ID\u003e qaware-oss-docker-registry.bintray.io/base/debian8-jre8\n```\n`\u003cIMAGE_ID\u003e` - The image ID from the latest versioned image previously created.\n\nUse the Docker client push command to upload and publish your images (please use\nDocker v1.6 and above):\n```shell\ndocker push qaware-oss-docker-registry.bintray.io/base/debian8-jre8:\u003cVERSION\u003e\n```\n`\u003cVERSION\u003e` - Should be the actual Java version, like 8u77. When not specified\n\"latest\" will be used as the Bintray version name.\n\nAlternatively you can also use Gradle to upload the Docker images to Bintray.\n```shell\n$ ./gradlew pushDockerImage -PbintrayApiKey=\u003c\u003cINSERT API KEY\u003e\u003e\n```\n\n## Downloading image from Bintray\n\nThe images are hosted at the QAware OSS Bintray Docker repository. Use the Docker\nclient pull command to download an image (please use Docker v1.6 and above):\n```shell\ndocker pull qaware-oss-docker-registry.bintray.io/base/debian8-jdk8:\u003cVERSION\u003e\n```\n`\u003cVERSION\u003e` - Optional. Should be the actual Java version like 8u77. When not specified\n\"latest\" will be used as the Bintray version name.\n\n## License\n\nThis software is provided under the MIT open source license, read the `LICENSE`\nfile for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqaware%2Fdebian8-jre8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqaware%2Fdebian8-jre8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqaware%2Fdebian8-jre8/lists"}