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 d946554 commit ec17533Copy full SHA for ec17533
Dockerfile
@@ -6,7 +6,8 @@ RUN apk add --no-cache aws-cli
6
RUN apk add --no-cache \
7
build-base \
8
git \
9
- postgresql-dev
+ postgresql-dev \
10
+ clang
11
12
# Clone the wal2json repository
13
RUN git clone https://github.com/eulerto/wal2json.git ./wal2json
@@ -17,5 +18,5 @@ RUN cd /wal2json && \
17
18
USE_PGXS=1 make install
19
20
# Clean up build dependencies
-RUN apk del build-base git postgresql-dev && \
21
+RUN apk del build-base git postgresql-dev clang && \
22
rm -rf ./wal2json
0 commit comments