From 16ab4a63cd1fbb989d00dac2369a1d2e815e648e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Oct 2025 01:08:40 +0000 Subject: [PATCH] Bump mongo from 7.0.21 to 8.0.15 in /legacy-mongo-shell Bumps mongo from 7.0.21 to 8.0.15. --- updated-dependencies: - dependency-name: mongo dependency-version: 8.0.15 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- legacy-mongo-shell/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy-mongo-shell/Dockerfile b/legacy-mongo-shell/Dockerfile index dd3269b..cd0d85c 100644 --- a/legacy-mongo-shell/Dockerfile +++ b/legacy-mongo-shell/Dockerfile @@ -1,5 +1,5 @@ # sync tag with git clone's argument below -FROM mongo:7.0.21 AS build +FROM mongo:8.0.15 AS build RUN apt update RUN apt install -y \ @@ -21,7 +21,7 @@ RUN python3 -m pip install -r etc/pip/compile-requirements.txt # or add `-j1` parameter to build sequentially. RUN python3 buildscripts/scons.py install-mongo --linker=gold --disable-warnings-as-errors -FROM mongo:7.0.21 +FROM mongo:8.0.15 COPY --from=build /mongo/build/install/bin/mongo /usr/bin RUN ln -sv /usr/bin/mongo /mongo