Skip to content

Commit e1801d3

Browse files
committed
Use debian bullseye for build
See: #506 & #512
1 parent 2979628 commit e1801d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.debian

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:22-bookworm-slim AS build
1+
FROM node:22-bullseye-slim AS build
22
WORKDIR /isolated-vm
33
RUN apt-get update && \
44
apt-get install -y --no-install-recommends \
5-
g++-11 \
5+
g++ \
66
make \
77
python3
88
COPY . .
99
RUN npm install --ignore-scripts
10-
RUN CXX=g++-11 MAKEFLAGS=-j$(nproc) npx -y prebuild
10+
RUN MAKEFLAGS=-j$(nproc) npx -y prebuild
1111
FROM scratch
1212
COPY --from=build /isolated-vm/prebuilds .

0 commit comments

Comments
 (0)