Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump MongoDB to 7.0.7 #219

Merged
merged 1 commit into from Mar 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions legacy-mongo-shell/Dockerfile
@@ -1,5 +1,5 @@
# sync tag with git clone's argument below
FROM mongo:7.0.5 AS build
FROM mongo:7.0.7 AS build

RUN apt update
RUN apt install -y \
Expand All @@ -12,7 +12,7 @@ RUN apt install -y \
WORKDIR /mongo

# sync tag with image tag above
RUN git clone -b r7.0.5 --depth 1 --progress https://github.com/mongodb/mongo.git .
RUN git clone -b r7.0.7 --depth 1 --progress https://github.com/mongodb/mongo.git .

RUN python3 -m pip install -r etc/pip/compile-requirements.txt

Expand All @@ -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.5
FROM mongo:7.0.7

COPY --from=build /mongo/build/install/bin/mongo /usr/bin
RUN ln -sv /usr/bin/mongo /mongo
Expand Down