prole/supabase/helm/prole-supabase/docker/Database.Dockerfile
chrisfu 5e0a1bda85 feat: Add GitOps (Gitea) and Supabase integration, plus database options
- Makefile: Added 'init' and 'deploy' targets for k3s parity and Gitea staging.

- OpenTofu: Fixed namespace handling in k3s main.tf to prevent metadata overwrites.

- UI: Added 'GitOps' and 'Database Options' configuration screens.

- Core: Enhanced monitoring, milestones, and environment handling for new services.

- Supabase: Integrated full Helm chart and manifest rendering logic.

- Gitea: Added deployment scripts and GitOps sync support.

- Database: Added Percona/Postgres Dockerfile templates and improved TDE scripts.

- Tests: Added coverage for new UI screens and navigation flows.
2026-02-26 18:32:15 -08:00

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