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 @@ -36,9 +36,14 @@ RUN apt-get update \
36
36
&& apt-get install -y postgresql-common \
37
37
&& sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf \
38
38
&& apt-get install -y \
39
+ make gcc python-pip git \
39
40
postgresql-$PG_MAJOR=$PG_VERSION \
40
41
postgresql-contrib-$PG_MAJOR=$PG_VERSION \
41
- && rm -rf /var/lib/apt/lists/*
42
+ postgresql-server-dev-$PG_MAJOR \
43
+ && rm -rf /var/lib/apt/lists/* \
44
+ && pip install pgxnclient && pgxn install temporal_tables \
45
+ && git clone https://bitbucket.org/IVC-Inc/json_enhancements && cd json_enhancements && NOHSTORE=1 make && make install \
46
+ && cd ~ && git clone https://github.com/omniti-labs/pg_amqp && cd pg_amqp && make && make install
42
47
43
48
# make the sample config easier to munge (and "correct by default")
44
49
RUN mv -v /usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample /usr/share/postgresql/ \
You can’t perform that action at this time.
0 commit comments