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.
optional-center-nav
Matthew Connelly 2022-04-19 14:38:06 +01:00 zatwierdzone przez GitHub
rodzic e04b1da754
commit 05a3b2d31f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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