Unofficial Node.js Docker images for RISC-V 64-bit (riscv64) on Debian Trixie
524
Unofficial Node.js Docker images for RISC-V 64-bit (linux/riscv64) based on Debian Trixie.
These images fill the gap left by the official Node.js images, which don't yet include linux/riscv64 platform support.
docker run --platform linux/riscv64 gounthar/node-riscv64:latest node -e "console.log(process.arch)"
# riscv64
| Tag | Base Image | Description |
|---|---|---|
<version>-trixie | buildpack-deps:trixie | Full variant with build tools (gcc, g++, make) |
<version>-trixie-slim | debian:trixie-slim | Minimal variant, smaller image size |
latest | buildpack-deps:trixie | Latest release, full variant |
slim | debian:trixie-slim | Latest release, slim variant |
Check the Tags page for all available versions.
FROM gounthar/node-riscv64:latest
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "server.js"]
docker run -it --platform linux/riscv64 gounthar/node-riscv64:latest
RISC-V is an open-source instruction set architecture gaining traction in embedded systems, SBCs, and servers. These images let you develop and test Node.js applications for riscv64 today, using QEMU emulation on any host or natively on RISC-V hardware.
Content type
Image
Digest
sha256:cd19cac09…
Size
76.6 MB
Last updated
7 months ago
docker pull gounthar/node-riscv64:22.22.0-trixie-slim