File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Use a specific Node.js version for better reproducibility
2
2
# FROM node:23.3.0-slim AS builder
3
3
# note this architecture is listed twice in this file!
4
- FROM amd64 /node:23-bookworm-slim AS builder
4
+ FROM arm64v8 /node:23-bookworm-slim AS builder
5
5
6
6
# Install pnpm globally and install necessary build tools
7
7
RUN npm install -g pnpm@9.4.0 && \
@@ -32,7 +32,7 @@ RUN pnpm install \
32
32
33
33
# Create a new stage for the final image
34
34
# FROM node:23.3.0-slim
35
- FROM amd64 /node:23-bookworm-slim
35
+ FROM arm64v8 /node:23-bookworm-slim
36
36
37
37
# Install runtime dependencies if needed
38
38
RUN npm install -g pnpm@9.4.0 && \
Original file line number Diff line number Diff line change
1
+
2
+ Tetsing Building locally with
3
+ ` docker build --platform linux/arm64 . `
4
+
1
5
# debug
2
6
3
7
` pnpm start:debug --characters=./characters/eliza.character.json `
You can’t perform that action at this time.
0 commit comments