Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

tickets/DM-41198: add postgresql-client to image #56

Merged
merged 1 commit into from
Oct 17, 2023
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: 8 additions & 0 deletions scripts/install-dependency-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ apt-get update
apt-get -y install --no-install-recommends build-essential libffi-dev \
libpq-dev python3-dev

# postgresql-client is not *strictly* necessary, but if we're using
# CloudSQL proxy against a Cloud SQL instance that has no public IP
# and a network policy only allowing access to the proxy from the Hub
# pod, this is a much easier way to inspect the DB than an interactive
# python instance.

apt-get -y install --no-install-recommends postgresql-client

# Delete cached files we don't need anymore:
apt-get clean
rm -rf /var/lib/apt/lists/*
Loading