Skip to content
Snippets Groups Projects

Resolve "Add RabbitMQ for MessageBus triggers"

Compare and Show latest version
1 file
+ 10
10
Compare changes
  • Side-by-side
  • Inline
+ 10
10
@@ -5,14 +5,14 @@ RUN apt-get update \
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 \
python3-pip \
build-essential \
python-dev \
python-setuptools; \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION-scripts; \
done \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN easy_install pgxnclient \
&& pgxnclient install pg_amqp
&& apt-get install --no-install-recommends -y \
git-all postgresql-server-dev-13 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