Scalable and distributed custom feed generator, ott - on that topic
at main 283 B view raw
1FROM ghcr.io/cloudnative-pg/postgresql:17 2 3USER root 4RUN apt-get update && \ 5 apt-get install -y --no-install-recommends \ 6 postgresql-contrib \ 7 postgresql-17-pgvector \ 8 postgresql-17-cron \ 9 postgresql-17-partman;\ 10 rm -fr /tmp/* ; \ 11 rm -rf /var/lib/apt/lists/*; 12 13USER 26