File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM debian:12 AS build_sdk
2+
3+ ARG PG_VERSION=17.5
4+ ARG SDK_VERSION=3.1.74.11bi-w-n
5+ ARG DEBUG=false
6+ ARG OBJDUMP=true
7+ ARG PG_BRANCH=REL_17_5_WASM-pglite
8+
9+ ENV \
10+ PG_VERSION=$PG_VERSION \
11+ SDK_VERSION=$SDK_VERSION \
12+ SDKROOT=/tmp/sdk \
13+ SYS_PYTHON=/usr/bin/python3 \
14+ DEBUG=$DEBUG \
15+ BUILDS=3.12 \
16+ EMFLAVOUR=3.1.74
17+
18+ RUN apt-get update && \
19+ apt-get install -y git wget lz4 bzip2 pv bash python3 build-essential libreadline-dev zlib1g-dev bison flex xz-utils perl
20+
21+ RUN apt-get install -y clang autoconf wget curl lz4 lsb-release zlib1g-dev libssl-dev
22+
23+ # RUN bash -c "wget -qO- https://github.com/electric-sql/portable-sdk/releases/download/3.1.74.11bi-w-n/python3.13-wasm-sdk-debian12-$(arch).tar.lz4 | lz4 -d | tar -xvf -"
24+ RUN bash -c "wget -qO- https://github.com/electric-sql/portable-sdk/releases/download/3.1.74.11.11/python3.13-wasm-sdk-debian12-$(arch).tar.lz4 | lz4 -d | tar -xvf -"
You can’t perform that action at this time.
0 commit comments