fix(AMQP extension): remove unnecessary apt update
Avoid extra update. Closes #2891
This commit is contained in:
parent
2a953c1a9a
commit
267b972d17
|
@ -381,7 +381,6 @@ ARG INSTALL_AMQP=false
|
||||||
RUN if [ ${INSTALL_AMQP} = true ]; then \
|
RUN if [ ${INSTALL_AMQP} = true ]; then \
|
||||||
# download and install manually, to make sure it's compatible with ampq installed by pecl later
|
# download and install manually, to make sure it's compatible with ampq installed by pecl later
|
||||||
# install cmake first
|
# install cmake first
|
||||||
apt-get -yqq update && \
|
|
||||||
apt-get -yqq install cmake && \
|
apt-get -yqq install cmake && \
|
||||||
curl -L -o /tmp/rabbitmq-c.tar.gz https://github.com/alanxz/rabbitmq-c/archive/master.tar.gz && \
|
curl -L -o /tmp/rabbitmq-c.tar.gz https://github.com/alanxz/rabbitmq-c/archive/master.tar.gz && \
|
||||||
mkdir -p rabbitmq-c && \
|
mkdir -p rabbitmq-c && \
|
||||||
|
|
Loading…
Reference in New Issue