mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 21:34:30 +00:00
- align app/db cluster defaults for knoe-dev-0 + knoe-dev-cnpg-0 on e2-standard-2\n- harden Supabase deploy flow for cross-cluster DB ILB, GKE storage class, and node selector fallback\n- migrate Helm chart path to knoe-supabase and make external DB host rendering IP-safe\n- disable Kerberos in prod unattended config to prevent Supabase GSS auth failures\n- add Supabase port-forward mappings and DB backup context handling improvements\n\nBuild status: k8s stable Co-authored-by: Junie <junie@jetbrains.com>
11 lines
285 B
Docker
11 lines
285 B
Docker
FROM bitnami/postgresql:12.9.0-debian-10-r40
|
|
|
|
USER root
|
|
|
|
RUN install_packages make git gcc libc6-dev
|
|
RUN git clone https://github.com/michelp/pgjwt.git
|
|
RUN cd pgjwt && make install
|
|
RUN git clone https://github.com/eulerto/wal2json.git
|
|
RUN cd wal2json && make && make install
|
|
|
|
USER 1001 |