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 60e0faf commit 0aa9cb2Copy full SHA for 0aa9cb2
Dockerfile
@@ -18,6 +18,14 @@ RUN cd /wal2json && \
18
USE_PGXS=1 make && \
19
USE_PGXS=1 make install
20
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
29
# Clean up build dependencies
30
RUN apk del build-base git postgresql-dev clang llvm && \
- rm -rf ./wal2json
31
+ rm -rf ./wal2json ./hypopg
0 commit comments