Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions .ci/40-delivery/app.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
FROM python:3.10-slim-bullseye@sha256:17de35f7050abebfd9bf15ec0efd94d2bda7b1a569337d99f2881d325042f952

# First dependency block is for postgres 15 repository
# Second block is for Psycopg2
# Curl block is to download the key for the Postgres repository
# Echo block is to add the repository to the sources list

RUN apt update && \
apt install -y \
dirmngr ca-certificates software-properties-common apt-transport-https lsb-release curl \
Expand All @@ -14,7 +9,7 @@ RUN apt update && \
echo deb [arch=amd64,arm64,ppc64el signed-by=/usr/share/keyrings/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main | \
tee /etc/apt/sources.list.d/postgresql.list && \
apt update && \
apt install -y postgresql-client-15 && \
apt install -y postgresql-client-17 && \
groupadd --system -g 1001 themaker \
&& useradd --system --create-home -g 1001 --no-user-group -u 1001 themaker
WORKDIR /home/themaker
Expand Down
8 changes: 4 additions & 4 deletions INSTALL_PG_DUMP.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PostgreSQL Client Installation Guide

This guide provides step-by-step instructions on how to install the PostgreSQL 15 client on your system using the official PostgreSQL APT repository. Follow these steps to ensure a successful installation.
This guide provides step-by-step instructions on how to install the PostgreSQL 17 client on your system using the official PostgreSQL APT repository. Follow these steps to ensure a successful installation.

Copilot AI Mar 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

INSTALL_PG_DUMP.md now instructs installing PostgreSQL 17 client, but README.md still lists pg_dump as "Version 15" in the prerequisites. Please update README.md to reference PostgreSQL/pg_dump 17 as well so documentation stays consistent.

Copilot uses AI. Check for mistakes.

## Prerequisites

Expand Down Expand Up @@ -34,12 +34,12 @@ After adding the new repository, update your APT package index again to include
sudo apt update
```

### 4. Install PostgreSQL 15 Client
### 4. Install PostgreSQL 17 Client

Now, install the PostgreSQL 15 client package:
Now, install the PostgreSQL 17 client package:

```shell
sudo apt install postgresql-client-15
sudo apt install postgresql-client-17
```

### 5. Verify the Installation
Expand Down
Loading