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.
This commit is contained in:
Matthew Connelly 2022-04-19 14:38:06 +01:00 committed by GitHub
parent e04b1da754
commit 05a3b2d31f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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