Dockerfile mongodb 4.4 to 5.0.14 upgrade (#18773)

This commit is contained in:
Sumesh Pradhan 2022-12-19 15:00:24 +05:30 committed by GitHub
parent 0f56f054e0
commit 60806f7761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,19 +12,18 @@ ENV LC_ALL C.UTF-8
# Update APT packages - Base Layer # Update APT packages - Base Layer
RUN apt-get update \ RUN apt-get update \
&& apt-get upgrade --yes \ && apt-get upgrade --yes \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --yes \
supervisor curl cron certbot nginx gnupg wget netcat openssh-client \ supervisor curl cron certbot nginx gnupg netcat openssh-client \
software-properties-common gettext openjdk-11-jdk \ software-properties-common gettext openjdk-11-jdk \
python3-pip python-setuptools git ca-certificates-java \ python3-pip python-setuptools git ca-certificates-java \
&& pip install --no-cache-dir git+https://github.com/coderanger/supervisor-stdout@973ba19967cdaf46d9c1634d1675fc65b9574f6e \ && pip install --no-cache-dir git+https://github.com/coderanger/supervisor-stdout@973ba19967cdaf46d9c1634d1675fc65b9574f6e \
&& apt-get remove -y git python3-pip && apt-get remove --yes git python3-pip
# Install MongoDB v4.4, Redis, NodeJS - Service Layer # Install MongoDB v5.0.14, Redis, NodeJS - Service Layer
RUN wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | apt-key add - RUN curl --silent --show-error --location https://www.mongodb.org/static/pgp/server-5.0.asc | apt-key add - \
RUN echo "deb [ arch=amd64,arm64 ]http://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.4.list \ && echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/5.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-5.0.list \
&& apt-get remove wget -y && curl --silent --show-error --location https://deb.nodesource.com/setup_14.x | bash - \
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \ && apt-get install --no-install-recommends --yes mongodb-org=5.0.14 nodejs redis build-essential \
&& apt-get install --no-install-recommends -y mongodb-org=4.4.6 nodejs redis build-essential \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*