f261ff2b85
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.
6 lines
148 B
Docker
6 lines
148 B
Docker
FROM postgres:14
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends postgresql-14-partman \
|
|
&& rm -rf /var/lib/apt/lists/*
|