Skip to content

Commit

Permalink
Use debian bullseye for build
Browse files Browse the repository at this point in the history
See: #506 & #512
  • Loading branch information
laverdet committed Dec 10, 2024
1 parent 2979628 commit e1801d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:22-bookworm-slim AS build
FROM node:22-bullseye-slim AS build
WORKDIR /isolated-vm
RUN apt-get update && \
apt-get install -y --no-install-recommends \
g++-11 \
g++ \
make \
python3
COPY . .
RUN npm install --ignore-scripts
RUN CXX=g++-11 MAKEFLAGS=-j$(nproc) npx -y prebuild
RUN MAKEFLAGS=-j$(nproc) npx -y prebuild
FROM scratch
COPY --from=build /isolated-vm/prebuilds .

0 comments on commit e1801d3

Please sign in to comment.