chore(docker): tidy dev postgres + clickhouse images (#3859)

Two small hygiene tweaks to **dev-only** images:

- `docker/Dockerfile.postgres`: add `--no-install-recommends` to the
partman install (leaner image, skips unneeded recommended packages).
- `internal-packages/clickhouse/Dockerfile`: run the migration helper as
a non-root user.

Both are local-dev images (the `pnpm run docker` stack) - no impact on
the published webapp image, prod, or self-hosting.
This commit is contained in:
nicktrn
2026-06-07 12:22:56 +01:00
committed by GitHub
parent fa15438e42
commit f261ff2b85
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FROM postgres:14
RUN apt-get update \
&& apt-get install -y postgresql-14-partman \
&& apt-get install -y --no-install-recommends postgresql-14-partman \
&& rm -rf /var/lib/apt/lists/*