File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
services/web/modules/server-ce-scripts/scripts Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -116,3 +116,9 @@ ENV LOG_LEVEL="info"
116116EXPOSE 80
117117
118118ENTRYPOINT ["/sbin/my_init" ]
119+
120+ # Patch 6.0.1
121+ # Apply security updates to base image
122+ RUN apt update && apt install -y linux-libc-dev \
123+ && unattended-upgrade --verbose --no-minimal-upgrade-steps \
124+ && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 66
77const { ObjectId } = mongodb
88
9- const MIN_MONGO_VERSION = [ 6 , 0 ]
10- const MIN_MONGO_FEATURE_COMPATIBILITY_VERSION = [ 6 , 0 ]
9+ const MIN_MONGO_VERSION = [ 8 , 0 ]
10+ const MIN_MONGO_FEATURE_COMPATIBILITY_VERSION = [ 7 , 0 ]
1111
1212// Allow ignoring admin check failures via an environment variable
1313const OVERRIDE_ENV_VAR_NAME = 'ALLOW_MONGO_ADMIN_CHECK_FAILURES'
You can’t perform that action at this time.
0 commit comments