Skip to content
Snippets Groups Projects

Resolve "Add RabbitMQ for MessageBus triggers"

Closed Laurens Oostwegel requested to merge 1-add-rabbitmq-for-messagebus-triggers into master
Compare and
1 file
+ 10
3
Compare changes
  • Side-by-side
  • Inline
+ 10
3
FROM postgres:13-bullseye
FROM postgres:14-bullseye
RUN apt-get update \
&& for POSTGIS_VERSION in 3; do \
@@ -7,5 +7,12 @@ RUN apt-get update \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION-scripts; \
done \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
&& apt-get install --no-install-recommends -y \
git-all postgresql-server-dev-14 make gcc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN cd tmp \
&& git clone https://github.com/omniti-labs/pg_amqp.git
RUN cd tmp/pg_amqp \
&& make \
&& make install
Loading