{"id":16458497,"url":"https://github.com/pionl/docker-node-clone-ready","last_synced_at":"2026-05-05T14:31:50.017Z","repository":{"id":66356620,"uuid":"127022338","full_name":"pionl/docker-node-clone-ready","owner":"pionl","description":"🐳 Docker image based on official node image with openssh and git installed","archived":false,"fork":false,"pushed_at":"2021-12-17T13:13:24.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-27T04:47:42.942Z","etag":null,"topics":["docker","docker-image","git","nodejs","openssh-server"],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pionl.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-03-27T17:26:34.000Z","updated_at":"2021-12-17T13:13:27.000Z","dependencies_parsed_at":"2023-02-22T06:30:57.020Z","dependency_job_id":null,"html_url":"https://github.com/pionl/docker-node-clone-ready","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pionl/docker-node-clone-ready","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pionl%2Fdocker-node-clone-ready","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pionl%2Fdocker-node-clone-ready/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pionl%2Fdocker-node-clone-ready/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pionl%2Fdocker-node-clone-ready/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pionl","download_url":"https://codeload.github.com/pionl/docker-node-clone-ready/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pionl%2Fdocker-node-clone-ready/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32653481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"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":["docker","docker-image","git","nodejs","openssh-server"],"created_at":"2024-10-11T10:45:27.582Z","updated_at":"2026-05-05T14:31:49.994Z","avatar_url":"https://github.com/pionl.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker image based on official node image with openssh and git installed\n\n## Pre-installed packages:\n\n- git and openssh-server for cloning support\n\n## Tags:\n\n![](https://img.shields.io/docker/pulls/pionl/node-clone-ready?style=flat-square) ![](https://img.shields.io/docker/stars/pionl/node-clone-ready?style=flat-square)\n\nImage | Badges\n --- | ---\n**pionl/node-clone-ready:8** | ![](https://img.shields.io/docker/image-size/pionl/node-clone-ready/8?style=flat-square)\n**pionl/node-clone-ready:9** | ![](https://img.shields.io/docker/image-size/pionl/node-clone-ready/9?style=flat-square)\n**pionl/node-clone-ready:12** | ![](https://img.shields.io/docker/image-size/pionl/node-clone-ready/12?style=flat-square)\n**pionl/node-clone-ready:14** | ![](https://img.shields.io/docker/image-size/pionl/node-clone-ready/14?style=flat-square)\n**pionl/node-clone-ready:16** | ![](https://img.shields.io/docker/image-size/pionl/node-clone-ready/16?style=flat-square)\n**pionl/node-clone-ready:17** | ![](https://img.shields.io/docker/image-size/pionl/node-clone-ready/17?style=flat-square)\n\n\n```docker\nFROM pionl/node-clone-ready:8\n```\n\n## Cloning/accessing private repository\n\nAdd to your Dockerfile\n\n```docker\n# Get the private keys to enbale pull from private repo\nARG ssh_prv_key\nRUN test -n \"$ssh_prv_key\"\n\n\n# Authorize SSH Host\nRUN mkdir -p /root/.ssh/ \u0026\u0026 \\\n    chmod 0700 /root/.ssh/\n\n# Add the keys and set permissions\nRUN echo \"$ssh_prv_key\" \u003e /root/.ssh/id_rsa\n\nRUN chmod 600 /root/.ssh/id_rsa\nRUN chown -R root:root /root/.ssh\n\n## Do your stuff that requires id_rsa\n## Then delete the keys to prevent keeping it in the repo by calling\n\nRUN rm -rf /root/.ssh/\n```\n\nPass desired id_rsa file when building image:\n\n```bash\ndocker build -t TAG_NAME --build-arg ssh_prv_key=\"$(cat ~/.ssh/id_rsa)\"\n```\n\n## Contributions\n\n1. Install [wf-docker](https://github.com/wrk-flow/wf-docker)\n2. Change the `Dockerfile.template`\n3. For new versions edit `.wf-docker.json` and `wf-docker.tags` property\n4. Use `wf-docker build` to build image\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpionl%2Fdocker-node-clone-ready","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpionl%2Fdocker-node-clone-ready","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpionl%2Fdocker-node-clone-ready/lists"}