astefanutti / scratch-node
- пятница, 16 ноября 2018 г. в 00:17:21
Dockerfile
Scratch Node.js Docker Images
Smallest Node.js Docker images (<15MB).
/etc/passwd
entry for a node
userlatest
, 11
, 11.1
, 11.1.0
– 14.6 MB10
, 10.13
, 10.13.0
– 14.3 MB8
, 8.12
, 8.12.0
– 13.2 MB6
, 6.14
, 6.14.4
– 11.6 MBFROM 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"]