We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a983067 commit 977d843Copy full SHA for 977d843
docker/Dockerfile
@@ -1,4 +1,8 @@
1
-FROM node:23.10.0 AS build
+# Bulding packages on ARM using emulation is veery slow.
2
+# Use amd64 for building .js and .css (which are platform agnostic),
3
+# and then copy to platform-specific nginx image
4
+
5
+FROM --platform=linux/amd64 node:23.10.0 AS build
6
7
WORKDIR /app
8
0 commit comments