{"id":18494985,"url":"https://github.com/qaware/debian8-jdk8","last_synced_at":"2026-03-19T04:45:31.869Z","repository":{"id":71906730,"uuid":"56267878","full_name":"qaware/debian8-jdk8","owner":"qaware","description":"A Debian 8 docker container with JDK8 installed.","archived":false,"fork":false,"pushed_at":"2016-12-20T08:21:46.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:01.465Z","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:26:30.000Z","updated_at":"2016-05-01T18:57:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"e664cb60-31d0-4a76-8796-bab4624e40fe","html_url":"https://github.com/qaware/debian8-jdk8","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/qaware/debian8-jdk8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jdk8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jdk8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jdk8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jdk8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qaware","download_url":"https://codeload.github.com/qaware/debian8-jdk8/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qaware%2Fdebian8-jdk8/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28730179,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"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":[],"created_at":"2024-11-06T13:22:59.076Z","updated_at":"2026-01-24T14:45:02.888Z","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-jdk8/images/download.svg) ](https://bintray.com/qaware-oss/registry/base%3Adebian8-jdk8/_latestVersion)\n\n# Debian 8 with JDK 8\n\nThis repository contains the `Dockerfile` for the `debian8-jdk8` image. It is\nbased on the latest Debian 8 image and installs the Oracle JDK8.\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-jdk8:\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-jdk8\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-jdk8:\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-jdk8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqaware%2Fdebian8-jdk8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqaware%2Fdebian8-jdk8/lists"}