Skip to content

Commit 0aa9cb2

Browse files
committed
feat: add hypopg postgresql extension
1 parent 60e0faf commit 0aa9cb2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ RUN cd /wal2json && \
1818
USE_PGXS=1 make && \
1919
USE_PGXS=1 make install
2020

21+
# Clone the HypoPG repository
22+
RUN git clone https://github.com/HypoPG/hypopg.git ./hypopg
23+
24+
# Build and install HypoPG
25+
RUN cd /hypopg && \
26+
USE_PGXS=1 make && \
27+
USE_PGXS=1 make install
28+
2129
# Clean up build dependencies
2230
RUN apk del build-base git postgresql-dev clang llvm && \
23-
rm -rf ./wal2json
31+
rm -rf ./wal2json ./hypopg

0 commit comments

Comments
 (0)