File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ ARG PG_SERVER_VERSION=11
2
2
ARG CITUS=9.4
3
3
4
4
FROM postgres:${PG_SERVER_VERSION}
5
+ MAINTAINER postgres.ai
6
+
5
7
6
8
ARG PG_SERVER_VERSION
7
9
ENV PG_SERVER_VERSION=${PG_SERVER_VERSION:-12}
@@ -41,9 +43,12 @@ RUN curl -s https://install.citusdata.com/community/deb.sh | bash \
41
43
&& apt-get install -y postgresql-${PG_SERVER_VERSION}-citus-${CITUS_VERSION} \
42
44
postgresql-${PG_SERVER_VERSION}-hll=2.14.citus-1 \
43
45
postgresql-${PG_SERVER_VERSION}-topn=2.3.0
46
+ # add powa extension
47
+ RUN apt-get install postgresql-${PG_SERVER_VERSION}-powa
48
+
44
49
# Reduce images size.
45
50
RUN rm -rf /tmp/* \
46
- && apt-get purge -y --auto-remove \
51
+ && apt-get purge -y --auto-remove gcc make wget unzip curl apt-transport-https postgresql-server-dev-${PG_SERVER_VERSION} \
47
52
&& apt-get clean -y autoclean \
48
53
&& rm -rf /var/lib/apt/lists/* \
49
54
# We don't want to use standard pgdata.
You can’t perform that action at this time.
0 commit comments