From adddb614e16e73f708207c27fd18e6afc67f8914 Mon Sep 17 00:00:00 2001 From: Divyam Date: Sat, 25 Apr 2026 21:48:05 +0530 Subject: [PATCH] Update versions --- build/docker/web/Dockerfile | 5 ++++- build/kubernetes/postgres-deployment.yaml | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/build/docker/web/Dockerfile b/build/docker/web/Dockerfile index d4ad107..ef29939 100644 --- a/build/docker/web/Dockerfile +++ b/build/docker/web/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app RUN apk --no-cache add curl nodejs npm -RUN npm install -D tailwindcss +RUN npm install -D tailwindcss@3 RUN go install github.com/a-h/templ/cmd/templ@latest @@ -13,6 +13,9 @@ RUN go mod download COPY . . +RUN go get github.com/a-h/templ@latest +RUN go mod tidy + RUN templ generate diff --git a/build/kubernetes/postgres-deployment.yaml b/build/kubernetes/postgres-deployment.yaml index 5e96444..43f5cdd 100644 --- a/build/kubernetes/postgres-deployment.yaml +++ b/build/kubernetes/postgres-deployment.yaml @@ -57,6 +57,8 @@ spec: configMapKeyRef: name: fastbin-config key: DB_PASSWORD + - name: PGDATA + value: /var/lib/postgresql/data/pgdata volumeMounts: - mountPath: /var/lib/postgresql/data name: psql-storage