We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dae23b commit 5c5e8ceCopy full SHA for 5c5e8ce
Dockerfile
@@ -1,7 +1,7 @@
1
# Stage 0: Build the thing
2
# Need debian based image to build the native rust module
3
# as musl doesn't support cdylib
4
-FROM node:20-slim AS builder
+FROM node:20.12-slim AS builder
5
6
# Needed in order to build rust FFI bindings.
7
RUN apt-get update && apt-get install -y build-essential cmake curl pkg-config pkg-config libssl-dev
@@ -29,7 +29,7 @@ RUN yarn build
29
30
31
# Stage 1: The actual container
32
-FROM node:20-slim
+FROM node:20.12-slim
33
34
WORKDIR /bin/matrix-hookshot
35
changelog.d/949.misc
@@ -0,0 +1 @@
+Pin the minor version of Node for Docker builds to avoid a startup crash on arm64.
0 commit comments