{"id":19196955,"url":"https://github.com/jitesoft/docker-node-yarn","last_synced_at":"2026-05-08T17:32:53.004Z","repository":{"id":76670234,"uuid":"98206514","full_name":"jitesoft/docker-node-yarn","owner":"jitesoft","description":"Mirror of https://gitlab.com/jitesoft/dockerfiles/node-yarn","archived":false,"fork":false,"pushed_at":"2026-04-10T07:43:34.000Z","size":183,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-10T09:34:30.503Z","etag":null,"topics":["docker","hacktoberfest","nodejs","yarn"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/jitesoft.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},"funding":{"github":["jitesoft"],"patreon":"jitesoft","open_collective":"jitesoft-open-source"}},"created_at":"2017-07-24T15:34:17.000Z","updated_at":"2026-04-10T07:43:38.000Z","dependencies_parsed_at":"2023-03-10T06:30:25.353Z","dependency_job_id":"8baf5e00-c9c5-474e-8e0a-ca7583842aca","html_url":"https://github.com/jitesoft/docker-node-yarn","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jitesoft/docker-node-yarn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitesoft%2Fdocker-node-yarn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitesoft%2Fdocker-node-yarn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitesoft%2Fdocker-node-yarn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitesoft%2Fdocker-node-yarn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jitesoft","download_url":"https://codeload.github.com/jitesoft/docker-node-yarn/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jitesoft%2Fdocker-node-yarn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32790299,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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","hacktoberfest","nodejs","yarn"],"created_at":"2024-11-09T12:15:00.785Z","updated_at":"2026-05-08T17:32:52.995Z","avatar_url":"https://github.com/jitesoft.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/jitesoft","https://patreon.com/jitesoft","https://opencollective.com/jitesoft-open-source","https://www.patreon.com/jitesoft"],"categories":[],"sub_categories":[],"readme":"# Node-Yarn\r\n\r\n[![Docker Pulls](https://img.shields.io/docker/pulls/jitesoft/node-yarn.svg)](https://cloud.docker.com/u/jitesoft/repository/docker/jitesoft/node-yarn)\r\n\r\nDocker image with alpine linux, node.js and yarn (v1).  \r\nImage is based on the  `jitesoft/node-base` repository.  \r\n\r\nImages are automatically built for AMD64 and ARM64 on schedule and on triggers (node version changes) in GitLab CI.  \r\nActive tags are the `latest`, `lts` and major versions of the supported nodejs versions seen [here](https://nodejs.org/en/about/previous-releases).\r\n\r\n## Yarn major version\r\n\r\nThis image contains yarn 1.x, that is, the classic Yarn package manager.  \r\n\r\nLater versions of yarn is recommended to install on a project basis and prefferably by using corepack.  \r\nDue to this, the recommendation - if you wish to use yarn berry (v2+) - is to not use this image.  \r\n\r\nExtending the node base image to use corepack can be easily done in the following manner:\r\n\r\n```dockerfile\r\n# Node 24 and earlier\r\nFROM jitesoft/node-base:24\r\nRUN corepack enable\r\n```\r\n\r\n```dockerfile\r\n# Node 25 and later\r\nFROM jitesoft/node-base:25\r\nRUN npm i -g corepack \\\r\n    \u0026\u0026 corepack enable\r\n```\r\n\r\n# Image/Tags\r\n\r\nTags are based on the Node.js version and uses the latest yarn version - from the v1 branch - available at build time.  \r\nThe `latest` tag references the latest build of the latest node version.  \r\nThe `lts` tag references the latest build of the latest node lts version.  \r\nTags named with their version name (`gallium`, `hydrogen` etc) is the latest build of the specific node version.  \r\nTags named with their major version uses latest minor/patch at build-time.\r\n\r\nImages can be found at the following registries:\r\n\r\n* [DockerHub](https://hub.docker.com/r/jitesoft/node-yarn) `docker.io/jitesoft/node-yarn`\r\n* [GitLab](https://gitlab.com/jitesoft/dockerfiles/node-yarn) `registry.gitlab.com/jitesoft/dockerfiles/node-yarn`\r\n* [GitHub](https://github.com/orgs/jitesoft/packages/container/package/node-yarn) `ghcr.io/jitesoft/node-yarn`\r\n\r\n## Slim/Full\r\n\r\nThe non-suffixed images are based on the `jitesoft/node-base` image while the `slim` suffixed image is based on the `jitesoft/node` image.  \r\nThe difference between those images are that the \"full\" version contains a set of extra packages used in building (`gcc`, `g++`, `curl`, `wget`, `openssl`, `python` and `make`).\r\n\r\n## Docker files\r\n\r\nDocker files can be found at  [GitLab](https://gitlab.com/jitesoft/dockerfiles/node-yarn) or [GitHub](https://github.com/jitesoft/docker-node-yarn)\r\n\r\n### Image labels\r\n\r\nThis image follows the [Jitesoft image label specification 1.0.0](https://gitlab.com/snippets/1866155).\r\n\r\n## Licenses\r\n\r\nFiles in this repository are released under the MIT license.  \r\nRead the Node.js license [here](https://github.com/nodejs/node/blob/master/LICENSE).  \r\nYarn is released under the [BSD 2-Clause](https://github.com/yarnpkg/yarn/blob/master/LICENSE) license.\r\n\r\n### Sponsors\r\n\r\nJitesoft images are built via GitLab CI on runners hosted by the following wonderful organizations:\r\n\r\n\u003ca href=\"https://osuosl.org/\" target=\"_blank\" title=\"Oregon State University - Open Source Lab\"\u003e\r\n    \u003cimg src=\"https://jitesoft.com/images/oslx128.webp\" alt=\"Oregon State University - Open Source Lab\"\u003e\r\n\u003c/a\u003e\r\n\r\n_The companies above are not affiliated with Jitesoft or any Jitesoft Projects directly._\r\n\r\n---\r\n\r\nSponsoring is vital for the further development and maintaining of open source.  \r\nQuestions and sponsoring queries can be made by \u003ca href=\"mailto:sponsor@jitesoft.com\"\u003eemail\u003c/a\u003e.  \r\nIf you wish to sponsor our projects, reach out to the email above or visit any of the following sites:\r\n\r\n[Open Collective](https://opencollective.com/jitesoft-open-source)  \r\n[GitHub Sponsors](https://github.com/sponsors/jitesoft)  \r\n[Patreon](https://www.patreon.com/jitesoft)\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjitesoft%2Fdocker-node-yarn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjitesoft%2Fdocker-node-yarn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjitesoft%2Fdocker-node-yarn/lists"}