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 c47ed8a commit d946554Copy full SHA for d946554
Dockerfile
@@ -9,13 +9,13 @@ RUN apk add --no-cache \
9
postgresql-dev
10
11
# Clone the wal2json repository
12
-RUN git clone https://github.com/eulerto/wal2json.git /usr/src/wal2json
+RUN git clone https://github.com/eulerto/wal2json.git ./wal2json
13
14
# Build and install wal2json
15
-RUN cd /usr/src/wal2json && \
16
- make && \
17
- make install
+RUN cd /wal2json && \
+ USE_PGXS=1 make && \
+ USE_PGXS=1 make install
18
19
# Clean up build dependencies
20
RUN apk del build-base git postgresql-dev && \
21
- rm -rf /usr/src/wal2json
+ rm -rf ./wal2json
0 commit comments