Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "bug",
"message": "Install tzdata-legacy in all-in-one image for timezones removed after the upgrade to trixie.",
"issue_origin": "github",
"issue_number": null,
"domain": "core",
"bullet_points": [],
"created_at": "2026-02-27"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "refactor",
"message": "Upgrade redis-server in all-in-one image to resolve CVEs",
"issue_origin": "github",
"issue_number": null,
"domain": "core",
"bullet_points": [],
"created_at": "2026-02-27"
}
5 changes: 4 additions & 1 deletion deploy/all-in-one/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
xmlsec1 \
gettext \
tini \
tzdata-legacy \
&& \
# Setup user and group with fixed UID/GID for volume permission consistency
getent group "$GID" || groupadd --system --gid "$GID" "${DOCKER_USER}" && \
Expand Down Expand Up @@ -118,11 +119,13 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install postgres + redis (PGDG repo already added in base stage)
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
curl -fsSL https://packages.redis.io/gpg | gpg --batch --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg && \
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb trixie main" > /etc/apt/sources.list.d/redis.list && \
apt-get update && \
apt-get install --no-install-recommends -y \
"postgresql-${POSTGRES_VERSION}" \
"postgresql-${POSTGRES_VERSION}-pgvector" \
redis-server && \
redis && \
# Setup redis
usermod -a -G tty redis && \
sed -i 's/daemonize yes/daemonize no/g' /etc/redis/redis.conf && \
Expand Down
Loading