Skip to content

Commit 28b7337

Browse files
committed
Use Node.js v14 for Docker image, not the latest one (v15)
This fixes building of the Docker image, which otherwise fails because the node-canvas dependency doesn't have a prebuilt version available for Node.js v15, and the image doesn't have the necessary system-level dependencies to build it from source. Using Node.js v14 (the latest LTS version) fixes this as we then can use the prebuilt node-canvas binary. As a bonus I have also added clearing of the NPM cache after installing packages, this will decrease the final image size slightly.
1 parent a9a68f7 commit 28b7337

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:latest
1+
FROM node:14
22

33
RUN apt-get update \
44
&& apt-get install -y --no-install-recommends \
@@ -11,7 +11,8 @@ ENV PATH=$NPM_CONFIG_PREFIX/bin:$PATH
1111
USER node
1212

1313
RUN npm --loglevel=warn install -g \
14-
assetgraph-builder \
15-
svgo
14+
assetgraph-builder \
15+
svgo \
16+
&& npm cache clean --force
1617

1718
ENTRYPOINT ["buildProduction"]

0 commit comments

Comments
 (0)