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:
parent
e04b1da754
commit
05a3b2d31f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue