Versions v9.11.1, v8.11.1, v6.14.1, v4.9.1, v0.12.18 and v0.10.48 – built on Alpine Linux.
All versions use the one mhart/alpine-node repository,
but each version aligns with the following tags (ie, mhart/alpine-node:<tag>
). The sizes are for the
unpacked images as reported by Docker – compressed sizes are about 1/3 of these:
- Full install built with npm and yarn:
latest
,9
,9.11
,9.11.1
– 68.4 MB (npm 5.8.0, yarn 1.5.1)8
,8.11
,8.11.1
– 67.3 MB (npm 5.8.0, yarn 1.5.1)
- Full install build with npm:
6
,6.14
,6.14.1
– 49.5 MB (npm 3.10.10)4
,4.9
,4.9.1
– 35.2 MB (npm 2.15.12)0.12
,0.12.18
– 33.36 MB (npm 2.15.11)0.10
,0.10.48
– 28.16 MB (npm 2.15.11)
- Base install with node built as a static binary with no npm or yarn:
base
,base-9
,base-9.11
,base-9.11.1
– 44 MBbase-8
,base-8.11
,base-8.11.1
– 42.9 MBbase-6
,base-6.14
,base-6.14.1
– 38 MBbase-4
,base-4.9
,base-4.9.1
– 26.6 MBbase-0.12
,base-0.12.18
– 24.72 MBbase-0.10
,base-0.10.48
– 18.22 MB
Major io.js versions are tagged too.
$ docker run mhart/alpine-node node --version
v9.11.1
$ docker run mhart/alpine-node npm --version
5.8.0
$ docker run mhart/alpine-node yarn --version
1.5.1
$ docker run mhart/alpine-node:8 node --version
v8.11.1
$ docker run mhart/alpine-node:6 node --version
v6.14.1
$ docker run mhart/alpine-node:base node --version
v9.11.1
$ docker run mhart/alpine-node:base-8 node --version
v8.11.1
$ docker run mhart/alpine-node:base-0.10 node --version
v0.10.48
Assuming you're doing your npm install
or yarn install
from your
Dockerfile
, you'll probably want to add node_modules
to your
.dockerignore
file first, so that it doesn't get sent to the docker daemon.
Here's a typical example using a "full install" image:
FROM mhart/alpine-node:8
WORKDIR /app
COPY . .
# If you have native dependencies, you'll need extra tools
# RUN apk add --no-cache make gcc g++ python
RUN npm install --production
EXPOSE 3000
CMD ["node", "index.js"]
However, for an even smaller build: from Docker version 17.05 onwards, you can
do multi-stage builds – so you can npm install
or yarn install
using the
full install image, but then create your app using one of the base images –
this can reduce the size of your final image by ~35MB or so.
# Do the npm install or yarn install in the full image
FROM mhart/alpine-node:8
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --production
# And then copy over node_modules, etc from that stage to the smaller base image
FROM mhart/alpine-node:base-8
WORKDIR /app
COPY --from=0 /app .
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]
It should be noted that the base-
images are statically compiled, so may not
work if you have native npm module dependencies.
Another option, which will work with native modules and also has the advantage of not needing to pull another container down from Docker, is just to copy the node binary and libstdc++ libraries from the full image onto a straight alpine image:
FROM mhart/alpine-node:8
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --production
# Only copy over the node pieces we need from the above image
FROM alpine:3.6
COPY --from=0 /usr/bin/node /usr/bin/
COPY --from=0 /usr/lib/libgcc* /usr/lib/libstdc* /usr/lib/
WORKDIR /app
COPY --from=0 /app .
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]
Another advantage of this approach is that the full images are typically
updated first, before the base-
images, so you might get updates slightly
sooner. The main disadvantage is that it requires a slightly larger, slightly
messier Dockerfile.
As Alpine Linux uses musl, you may run into some issues with environments expecting glibc-like behavior – especially if you try to use binaries compiled with glibc. You should recompile these binaries to use musl (compiling on Alpine is probably the easiest way to do this).
Inspired by: