Skip to content

Commit 9557a61

Browse files
committed
patch: v6.0.1
1 parent b0d05c0 commit 9557a61

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

server-ce/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,9 @@ ENV LOG_LEVEL="info"
116116
EXPOSE 80
117117

118118
ENTRYPOINT ["/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/*

services/web/modules/server-ce-scripts/scripts/check-mongodb.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import {
66

77
const { 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
1313
const OVERRIDE_ENV_VAR_NAME = 'ALLOW_MONGO_ADMIN_CHECK_FAILURES'

0 commit comments

Comments
 (0)