Skip to content

Commit 5d67b17

Browse files
author
Ubuntu
committed
added powa extension support
1 parent 63ecf3a commit 5d67b17

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

extended/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ ARG PG_SERVER_VERSION=11
22
ARG CITUS=9.4
33

44
FROM postgres:${PG_SERVER_VERSION}
5+
MAINTAINER postgres.ai
6+
57

68
ARG PG_SERVER_VERSION
79
ENV PG_SERVER_VERSION=${PG_SERVER_VERSION:-12}
@@ -41,9 +43,12 @@ RUN curl -s https://install.citusdata.com/community/deb.sh | bash \
4143
&& apt-get install -y postgresql-${PG_SERVER_VERSION}-citus-${CITUS_VERSION} \
4244
postgresql-${PG_SERVER_VERSION}-hll=2.14.citus-1 \
4345
postgresql-${PG_SERVER_VERSION}-topn=2.3.0
46+
# add powa extension
47+
RUN apt-get install postgresql-${PG_SERVER_VERSION}-powa
48+
4449
# Reduce images size.
4550
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} \
4752
&& apt-get clean -y autoclean \
4853
&& rm -rf /var/lib/apt/lists/* \
4954
# We don't want to use standard pgdata.

0 commit comments

Comments
 (0)