{"id":42148036,"url":"https://github.com/peter-mount/node","last_synced_at":"2026-01-26T18:01:02.230Z","repository":{"id":85760454,"uuid":"62733560","full_name":"peter-mount/node","owner":"peter-mount","description":"Docker container with nodejs","archived":false,"fork":false,"pushed_at":"2019-02-21T13:30:51.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-06T21:38:30.841Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peter-mount.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}},"created_at":"2016-07-06T15:47:35.000Z","updated_at":"2019-02-21T13:30:52.000Z","dependencies_parsed_at":"2023-05-04T17:46:57.670Z","dependency_job_id":null,"html_url":"https://github.com/peter-mount/node","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/peter-mount/node","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mount%2Fnode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mount%2Fnode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mount%2Fnode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mount%2Fnode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peter-mount","download_url":"https://codeload.github.com/peter-mount/node/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peter-mount%2Fnode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28784093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T13:55:28.044Z","status":"ssl_error","status_checked_at":"2026-01-26T13:55:26.068Z","response_time":59,"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":"2026-01-26T18:00:26.870Z","updated_at":"2026-01-26T18:01:02.215Z","avatar_url":"https://github.com/peter-mount.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker container with NodeJS v8+ running on Alpine Linux\n\nThis docker container is intended as the base for running nodejs applications like our [node-server](https://github.com/peter-mount/node-server) micro webserver.\n\nIt is available for the amd64, arm32v6 (Raspberry PI) and arm64v8 processor architectures.\n\n## Build Status\n\n| Architecture | Image | Tags | Build Status |\n| :----------: | ----- | ---- | ------------ | \n| amd64 | [area51/node](https://hub.docker.com/r/area51/node/) | latest 8.2.1 | ![Build Status](https://img.shields.io/docker/build/area51/node.svg)\n| amd64 | [area51/amd64-node](https://hub.docker.com/r/area51/node-amd64/) | latest 8.2.1 | [![Build Status](http://jenkins.area51.onl/buildStatus/icon?job=Public/node-amd64)](http://jenkins.area51.onl/job/Public/job/node-amd64/)\n| arm32v6 | [area51/arm32v6-node](https://hub.docker.com/r/area51/node-arm32v6/) | latest 8.2.1 | [![Build Status](http://jenkins.area51.onl/buildStatus/icon?job=Public/node-arm32v6)](http://jenkins.area51.onl/job/Public/job/node-arm32v6/)\n| arm64v8 | [area51/arm64v8-node](https://hub.docker.com/r/area51/node-arm64v8/) | latest 8.2.1 |  [![Build Status](http://jenkins.area51.onl/buildStatus/icon?job=Public/node-arm64v8)](http://jenkins.area51.onl/job/Public/job/node-arm64v8/)\n| Raspberry PI | [area51/rpi-node](https://hub.docker.com/r/area51/node-arm32v6/) | latest 8.2.1 | [![Build Status](http://jenkins.area51.onl/buildStatus/icon?job=Public/node-arm32v6)](http://jenkins.area51.onl/job/Public/job/node-arm32v6/)\n\n## Building\n\nAs of Sept 21 2017 this project uses a single Dockerfile for all architectures so the only prerequisites are:\n1. Architecture has a base alpine image available, named arch/alpine\n1. The docker host being used is version 1.17+ and has the experimental extensions enabled - see below.\n\n### experimental extension: --squash\n\nThis is optional but using this will halve the final image size. If your docker server does not have the experimental extensions enabled then remove the --squash option in the build commands.\n\n### Build for amd64 (default)\n\nAs amd64 is the default platform you can run the build as you would for any other image:\n\n    docker build -t my-node:latest --squash .\n\n### Build for any architecture\n\nTo build on another architecture, simply add --build-arg ARCHITECTURE= to the build command with the supported architecture name. For example:\n\n1. amd64 for 64bit AMD/Intel machines\n1. arm32v6 for 32bit ARM6 machines including all Raspberry PI's\n1. arm64v8 for 64bit ARM8 machines, used by some cloud providers\n\nThe only limitation here is that the docker server in use must be of that architecture and there must be an alpine image available, e.g. amd64/alpine:latest, arm64v8/alpine:latest etc\n\ne.g.\n\n    docker build -t area51/amd64-node:8.2.1 \\\n      --build-arg ARCHITECTURE=amd64 \\\n      --squash .\n\n### Build for a specific version of node\n\nYou can choose any version of node to build by adding --build-arg VERSION= to the build command with the required version number.\n\ne.g.\n\n    docker build -t area51/amd64-node:8.2.1 \\\n      --build-arg VERSION=8.2.1 \\\n      --squash .\n\n### Jenkins build\n\nThis is the commands I use in the Jenkins builds (formatting just to make it easier to read here)\n\n    docker build \\\n      -t area51/amd64-node:8.2.1 \\\n      --pull \\\n      --force-rm=true \\\n      --build-arg ARCHITECTURE=amd64 \\\n      --build-arg VERSION=8.2.1 \\\n      --squash .\n    docker push area51/amd64-node:8.2.1\n    docker tag area51/amd64-node:8.2.1 area51/amd64-node:latest\n    docker push area51/amd64-node:latest\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeter-mount%2Fnode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeter-mount%2Fnode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeter-mount%2Fnode/lists"}