Skip to content
Snippets Groups Projects

Resolve "Add RabbitMQ for MessageBus triggers"

Compare and Show latest version
1 file
+ 13
10
Compare changes
  • Side-by-side
  • Inline
+ 13
10
@@ -2,17 +2,20 @@ FROM postgres:13-bullseye
RUN apt-get update \
&& for POSTGIS_VERSION in 3; do \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
postgresql-contrib \
postgresql-server-dev-$PG_MAJOR \
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-server-dev-$PG_MAJOR \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION \
postgresql-$PG_MAJOR-postgis-$POSTGIS_VERSION-scripts; \
done \
&& apt-get install --no-install-recommends -y \
build-essential \
python3-pip \
python-dev \
python-setuptools; \
done \
RUN pip install pgxnclient
RUN pgxnclient install pg_amqp
RUN apt-get clean \
python-setuptools \
libpq-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get libpg-dev \
&& pip install pgxnclient \
&& pgxnclient install pg_amqp
Loading