Skip to content

Commit f47eb93

Browse files
committed
Add distgen generated files
Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 42be7c5 commit f47eb93

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

16/Dockerfile.c10s

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4444
RUN INSTALL_PKGS="rsync tar gettext-envsubst nss_wrapper-libs glibc-locale-source xz" && \
4545
PSQL_PKGS="postgresql16-server postgresql16-contrib postgresql16-upgrade" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
47+
PSQL_PKGS="$PSQL_PKGS postgresql16-pgvector" && \
4748
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS $PSQL_PKGS && \
48-
rpm -V $INSTALL_PKGS postgresql-server postgresql-contrib postgresql-upgrade && \
49+
rpm -V $INSTALL_PKGS postgresql-server postgresql-contrib postgresql-upgrade pgvector && \
4950
postgres -V | grep -qe "$POSTGRESQL_VERSION\." && echo "Found VERSION $POSTGRESQL_VERSION" && \
5051
yum -y clean all --enablerepo='*' && \
5152
localedef -f UTF-8 -i en_US en_US.UTF-8 && \

16/Dockerfile.c9s

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ RUN { yum -y module enable postgresql:16 || :; } && \
4545
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
48+
INSTALL_PKGS="$INSTALL_PKGS pgvector" && \
4849
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \
4950
rpm -V $INSTALL_PKGS && \
5051
postgres -V | grep -qe "$POSTGRESQL_VERSION\." && echo "Found VERSION $POSTGRESQL_VERSION" && \

16/Dockerfile.rhel10

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ RUN INSTALL_PKGS="rsync tar gettext-envsubst nss_wrapper-libs glibc-locale-sourc
4545
PSQL_PKGS="postgresql16-server postgresql16-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
48+
PSQL_PKGS="$PSQL_PKGS postgresql16-pgvector" && \
4849
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS $PSQL_PKGS && \
4950
rpm -V $INSTALL_PKGS && \
5051
postgres -V | grep -qe "$POSTGRESQL_VERSION\." && echo "Found VERSION $POSTGRESQL_VERSION" && \

16/Dockerfile.rhel9

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ RUN { yum -y module enable postgresql:16 || :; } && \
4646
INSTALL_PKGS="rsync tar gettext bind9.18-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
49+
INSTALL_PKGS="$INSTALL_PKGS pgvector" && \
4950
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \
5051
rpm -V $INSTALL_PKGS && \
5152
postgres -V | grep -qe "$POSTGRESQL_VERSION\." && echo "Found VERSION $POSTGRESQL_VERSION" && \

0 commit comments

Comments
 (0)