Skip to content

Commit 977d843

Browse files
committed
[DOP-25355] Build .js and .css only at AMD64 platform
1 parent a983067 commit 977d843

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docker/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
FROM node:23.10.0 AS build
1+
# 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
26

37
WORKDIR /app
48

0 commit comments

Comments
 (0)