We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c499a commit 090c78fCopy full SHA for 090c78f
Dockerfile
@@ -1,12 +1,13 @@
1
FROM --platform=linux/amd64 rust:1.88.0-bookworm as builder
2
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
3
4
-# Install OpenSSL dev libraries and clang for bindgen
5
-RUN apt-get update && apt-get install -y \
+RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
+ apt-get update && apt-get install -y \
6
pkg-config \
7
libssl-dev \
8
clang \
9
libclang-dev \
10
+ nodejs \
11
&& rm -rf /var/lib/apt/lists/*
12
13
WORKDIR /app
0 commit comments