Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,16 @@ RUN set -ex \
&& install main/pg/wal-g / \
&& /wal-g --help

FROM postgres:14.17-alpine3.21
FROM postgres:14.18-alpine3.21

# Upgrade vulnerable libxml2 package
RUN apk upgrade --no-cache libxml2

RUN apk add --update iputils htop curl busybox-suid jq \
&& curl -sOL https://cronitor.io/dl/linux_amd64.tar.gz \
&& tar xvf linux_amd64.tar.gz -C /usr/bin/ \
&& apk upgrade --no-cache
&& apk upgrade --no-cache libxml2 \
&& apk info -v libxml2

# Copy compiled wal-g binary from builder
COPY --from=builder /wal-g /usr/local/bin
Expand Down