Skip to content

shaunstanislauslau/scratch-node

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Scratch Node.js Docker Images

Smallest Node.js Docker images (<15MB).

Content

  • A fully statically linked and compressed Node.js binary
  • An /etc/passwd entry for a node user

Images

  • latest, 11, 11.1, 11.1.0 – 14.6 MB
  • 10, 10.13, 10.13.0 – 14.3 MB
  • 8, 8.12, 8.12.0 – 13.2 MB
  • 6, 6.14, 6.14.4 – 11.6 MB

Usage

FROM node as builder

WORKDIR /app

COPY package.json package-lock.json index.js ./

RUN npm install --prod

FROM astefanutti/scratch-node

COPY --from=builder /app /

ENTRYPOINT ["./node", "index.js"]

About

Scratch Node.js Docker Images

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%