We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6296c commit 6957480Copy full SHA for 6957480
1 file changed
layers/amqp/Dockerfile
@@ -9,9 +9,11 @@ RUN mkdir -p ${AMQP_BUILD_DIR}
9
10
# Compile rabbitmq
11
WORKDIR ${AMQP_BUILD_DIR}
12
-RUN curl -Ls -o rabbitmq-c.tar.gz https://github.com/alanxz/rabbitmq-c/archive/refs/tags/v0.15.0.tar.gz
+# Currently it is not possible to use newer rabbitmq-c version than 0.13.0 because this is
13
+# last version which supports CMake 3.17 which is latest available version in Amazon Linux 2.
14
+RUN curl -Ls -o rabbitmq-c.tar.gz https://github.com/alanxz/rabbitmq-c/archive/refs/tags/v0.13.0.tar.gz
15
RUN tar xzf rabbitmq-c.tar.gz
-WORKDIR ${AMQP_BUILD_DIR}/rabbitmq-c-0.15.0
16
+WORKDIR ${AMQP_BUILD_DIR}/rabbitmq-c-0.13.0
17
RUN cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} .
18
RUN cmake --build . --target install
19
0 commit comments