We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2979628 commit e1801d3Copy full SHA for e1801d3
Dockerfile.debian
@@ -1,12 +1,12 @@
1
-FROM node:22-bookworm-slim AS build
+FROM node:22-bullseye-slim AS build
2
WORKDIR /isolated-vm
3
RUN apt-get update && \
4
apt-get install -y --no-install-recommends \
5
- g++-11 \
+ g++ \
6
make \
7
python3
8
COPY . .
9
RUN npm install --ignore-scripts
10
-RUN CXX=g++-11 MAKEFLAGS=-j$(nproc) npx -y prebuild
+RUN MAKEFLAGS=-j$(nproc) npx -y prebuild
11
FROM scratch
12
COPY --from=build /isolated-vm/prebuilds .
0 commit comments