Skip to content

Commit b6d2b6f

Browse files
committed
add postgresql_anonymizer extension support
1 parent 5192bc2 commit b6d2b6f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

extended/Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,19 @@ RUN export USE_PGXS=1 && make && make install
5959
WORKDIR /
6060

6161
# add pg_cron extension
62-
RUN apt-get -y install postgresql-${PG_SERVER_VERSION}-cron
62+
RUN apt-get install -y postgresql-${PG_SERVER_VERSION}-cron
6363

6464
# add postgresql_anonymizer extension
6565
RUN pgxn install ddlx && pgxn install postgresql_anonymizer
6666

67+
68+
#add pg_stat_kcache extension
69+
RUN apt-get install postgresql-${PG_SERVER_VERSION}-pg-stat-kcache
70+
71+
#add pg_qualstats extension
72+
RUN apt-get install postgresql-${PG_SERVER_VERSION}-pg-qualstats
73+
74+
6775
# Reduce images size.
6876
RUN rm -rf /tmp/* \
6977
&& apt-get purge -y --auto-remove gcc make wget unzip curl libc6-dev apt-transport-https git postgresql-server-dev-${PG_SERVER_VERSION} pgxnclient build-essential \

0 commit comments

Comments
 (0)