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 Show latest version
1 file
+ 7
8
Compare changes
  • Side-by-side
  • Inline
+ 7
8
FROM postgres:13-bullseye
FROM postgres:14-bullseye
RUN apt-get update \
&& for POSTGIS_VERSION in 3; do \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
postgresql-contrib \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION-scripts; \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
postgresql-contrib \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION-scripts; \
done \
&& apt-get install --no-install-recommends -y \
git-all postgresql-server-dev-all make gcc \
git-all postgresql-server-dev-14 make gcc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir tmp \
&& cd tmp \
RUN cd tmp \
&& git clone https://github.com/omniti-labs/pg_amqp.git
RUN cd tmp/pg_amqp \
&& make \
Loading