{"id":22423460,"url":"https://github.com/prantlf/docker-node-git","last_synced_at":"2026-04-20T10:03:00.302Z","repository":{"id":150431643,"uuid":"226217301","full_name":"prantlf/docker-node-git","owner":"prantlf","description":"Docker image: Node.js LTS on Alpine Linux with Git","archived":false,"fork":false,"pushed_at":"2021-12-05T13:51:37.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-26T00:53:48.307Z","etag":null,"topics":["docker","docker-image","git","node","node-lts","nodejs"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","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/prantlf.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":"2019-12-06T01:00:50.000Z","updated_at":"2021-12-05T13:51:39.000Z","dependencies_parsed_at":"2023-04-24T17:27:17.856Z","dependency_job_id":null,"html_url":"https://github.com/prantlf/docker-node-git","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/prantlf/docker-node-git","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prantlf%2Fdocker-node-git","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prantlf%2Fdocker-node-git/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prantlf%2Fdocker-node-git/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prantlf%2Fdocker-node-git/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prantlf","download_url":"https://codeload.github.com/prantlf/docker-node-git/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prantlf%2Fdocker-node-git/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32042293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","node","node-lts","nodejs"],"created_at":"2024-12-05T18:11:26.445Z","updated_at":"2026-04-20T10:03:00.284Z","avatar_url":"https://github.com/prantlf.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# prantlf/node-git\n\n[Docker] image: Node.js LTS on Alpine Linux with Git\n\n[![nodesource/node](http://dockeri.co/image/prantlf/node-git)](https://hub.docker.com/repository/docker/prantlf/node-git/)\n\n[This image] is supposed to build and test [Node.js packages (NPM modules)], which include dependencies pulled by [Git]. It is built automatically on the top of the tag `lts-alpine` from the [node repository], so that it always runs the current [LTS version] of [Node.js] in the latest [Alpine Linux]. [Git] has to be updated from time to time by triggering a new build manually.\n\nIf you have trouble pulling the image from the Docker's default hub.docker.com, try gitlab.com, where [this project] is primarily maintained: `registry.gitlab.com/prantlf/docker-node-git`.\n\n## Tags\n\n- [`latest`], `lts-alpine`\n\n## Install\n\n```\ndocker pull prantlf/node-git:lts-alpine\n```\n\n## Use\n\n```\ndocker run --rm -it -v \"$(pwd)\":/app -w /app \\\n  prantlf/node-git:lts-alpine \\\n  sh -c 'npm ci \u0026\u0026 npm test'\n```\n\nSee [how to use the base node image] for more information.\n\n## Build, Test and Publish\n\nThe local image is built as `node-git` and pushed to the docker hub as `prantlf/node-git:lts-alpine`.\n\nRemove an old local image:\n\n    make clean\n\nCheck the `Dockerfile`:\n\n    make lint\n\nBuild a new local image:\n\n    make build\n\nEnter an interactive shell inside the created image:\n\n    make run\n\nTag the local image for pushing:\n\n    make tag\n\nLogin to the docker hub:\n\n    make login\n\nPush the local image to the docker hub:\n\n    make push\n\n## License\n\nCopyright (c) 2019-2021 Ferdinand Prantl\n\nLicensed under the MIT license.\n\n[Docker]: https://www.docker.com/\n[This image]: https://hub.docker.com/repository/docker/prantlf/node-git\n[this project]: https://gitlab.com/prantlf/docker-node-git#prantlfnode-git\n[`latest`]: https://hub.docker.com/repository/docker/prantlf/node-git/tags\n[Node.js packages (NPM modules)]: https://docs.npmjs.com/about-packages-and-modules\n[Git]: https://git-scm.com/\n[node repository]: https://hub.docker.com/_/node\n[LTS version]: https://nodejs.org/en/about/releases/\n[Node.js]: https://nodejs.org/\n[Alpine Linux]: https://alpinelinux.org/\n[how to use the base node image]: https://github.com/nodejs/docker-node/blob/master/README.md#how-to-use-this-image\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprantlf%2Fdocker-node-git","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprantlf%2Fdocker-node-git","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprantlf%2Fdocker-node-git/lists"}