ci: fix dockerfile

This commit is contained in:
Vasily Zubarev
2025-05-03 09:54:26 +02:00
parent 69bc4b3889
commit 9a6f2d9c32

View File

@@ -3,6 +3,7 @@ FROM node:23-slim AS base
# Default environment variables
ENV PORT=7331
ENV NODE_ENV=production
ENV DATABASE_URL="postgresql://localhost:5432/taxhacker"
# Build stage
FROM base AS builder