Skip to content

Commit 090c78f

Browse files
committed
missing node
1 parent 95c499a commit 090c78f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
FROM --platform=linux/amd64 rust:1.88.0-bookworm as builder
22
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
33

4-
# Install OpenSSL dev libraries and clang for bindgen
5-
RUN apt-get update && apt-get install -y \
4+
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
5+
apt-get update && apt-get install -y \
66
pkg-config \
77
libssl-dev \
88
clang \
99
libclang-dev \
10+
nodejs \
1011
&& rm -rf /var/lib/apt/lists/*
1112

1213
WORKDIR /app

0 commit comments

Comments
 (0)