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 16f3cda commit 12e8333Copy full SHA for 12e8333
Dockerfile
@@ -456,11 +456,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
456
ninja-build \
457
git \
458
libtinfo5 \
459
+ libstdc++-10-dev \
460
&& rm -rf /var/lib/apt/lists/*
461
# Build from source
462
WORKDIR /tmp/plv8-${plv8_release}
463
ENV DOCKER=1
464
RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccache \
465
+ git init && \
466
+ rm -rf deps/v8-cmake/ && \
467
+ git submodule add https://github.com/bnoordhuis/v8-cmake.git deps/v8-cmake/ && \
468
+ git submodule update --init --recursive && \
469
make
470
# Create debian package
471
RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --nodoc
0 commit comments