Skip to content

Commit

Permalink
fix(Dockerfile): Use explicit node version (#2125)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Maffsie authored Apr 19, 2022
1 parent e04b1da commit 05a3b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 05a3b2d

Please sign in to comment.