commit eff2cd26f67904ce5d1c5115e3a50a713d558f07 parent 6807c59e1ac993c4e1c5f4f97f7465e2a491bb8b Author: MTRNord <MTRNord@users.noreply.github.com> Date: Thu, 15 Jan 2026 14:44:52 +0100 install git on convex as well Signed-off-by: MTRNord <MTRNord@users.noreply.github.com> Diffstat:
| A | apps/talos_cluster/convex/Dockerfile | | | 4 | ++++ |
| M | apps/talos_cluster/convex/deployment.yaml | | | 2 | +- |
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/apps/talos_cluster/convex/Dockerfile b/apps/talos_cluster/convex/Dockerfile @@ -0,0 +1,4 @@ +FROM ghcr.io/get-convex/convex-backend:latest + +# Install git using apt-get +RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/* diff --git a/apps/talos_cluster/convex/deployment.yaml b/apps/talos_cluster/convex/deployment.yaml @@ -19,7 +19,7 @@ spec: spec: containers: - name: backend - image: ghcr.io/get-convex/convex-backend:latest + image: ghcr.io/mtrnord/git-convex:latest env: - name: "CONVEX_CLOUD_ORIGIN" value: "https://api.convex.mtrnord.blog"