fix: add DATABASE_URL environment variable in Dockerfile
Build Check / build (push) Successful in 30s
Build Check / push-image (push) Successful in 1m0s
Build Check / deploy-coolify (push) Successful in 7s

This commit is contained in:
Space-Banane
2026-07-16 23:45:30 +02:00
parent 5fea1541f8
commit ef63164d58
+1
View File
@@ -1,6 +1,7 @@
FROM node:24-alpine AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
ENV DATABASE_URL="postgresql://postgres:postgres@db:5432/postgres"
RUN corepack enable
FROM base AS deps