Fixed valdiation errors

This commit is contained in:
2025-10-15 00:00:16 +02:00
parent 1b80cacae2
commit 8d8cf229f3
2 changed files with 2 additions and 2 deletions

View File

@@ -7,8 +7,7 @@ RUN bun i --frozen-lockfile
COPY . . COPY . .
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
ENV NODE_ENV=production ENV NODE_ENV=production
ENV DOCKER=1 RUN DOCKER=1 bun run build
RUN bun run build
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs && chown -R nextjs:nodejs . RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs && chown -R nextjs:nodejs .

View File

@@ -8,6 +8,7 @@ import { env } from "../env/server"
import { getGravatar } from "../gravatar" import { getGravatar } from "../gravatar"
export const auth = betterAuth({ export const auth = betterAuth({
appName: "Linker",
database: drizzleAdapter(db, { database: drizzleAdapter(db, {
provider: "pg" provider: "pg"
}), }),