Remove rabbimq version argument
This commit is contained in:
parent
9eeed1614c
commit
908e3a8f0a
|
@ -4,7 +4,6 @@ FROM ${BASE_IMAGE} as documentserver
|
|||
LABEL maintainer Ascensio System SIA <support@onlyoffice.com>
|
||||
|
||||
ARG PG_VERSION=14
|
||||
ARG RABBIT_VERSION=3.10
|
||||
|
||||
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 DEBIAN_FRONTEND=noninteractive PG_VERSION=${PG_VERSION}
|
||||
|
||||
|
@ -19,7 +18,7 @@ RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \
|
|||
locale-gen en_US.UTF-8 && \
|
||||
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections && \
|
||||
wget -O - https://packagecloud.io/install/repositories/rabbitmq/rabbitmq-server/script.deb.sh | bash && \
|
||||
if [ $(lsb_release -cs) = focal ]; then RABBIT_VERSION=3.8.11-1; fi && \
|
||||
if [ $(lsb_release -cs) = focal ]; then RABBIT_VERSION=3.8.11-1; else RABBIT_VERSION=3.10 ; fi && \
|
||||
apt-get -yq install \
|
||||
adduser \
|
||||
apt-utils \
|
||||
|
|
Loading…
Reference in a new issue