File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,19 @@ RUN export USE_PGXS=1 && make && make install
59
59
WORKDIR /
60
60
61
61
# 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
63
63
64
64
# add postgresql_anonymizer extension
65
65
RUN pgxn install ddlx && pgxn install postgresql_anonymizer
66
66
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
+
67
75
# Reduce images size.
68
76
RUN rm -rf /tmp/* \
69
77
&& 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 \
You can’t perform that action at this time.
0 commit comments