From 05a3b2d31f47d426123aa33a9e4958bb92b06326 Mon Sep 17 00:00:00 2001 From: Matthew Connelly Date: Tue, 19 Apr 2022 14:38:06 +0100 Subject: [PATCH] fix(Dockerfile): Use explicit node version (#2125) The `node:alpine` Docker image appears to have recently been updated to point to Node 17, breaking new builds of Pinafore. This commit explicitly specifies Node 16 until the underlying reason for the build failure on 17+ can be fixed. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ccb12f6f..7a3a88ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Using Alpine to keep the images smaller # Change to using the official NodeJS Alpine container -FROM node:alpine +FROM node:16-alpine # Pushing all files into image WORKDIR /app