fix(docker): add credentials fields to auth provider, postgres service, expose port 5433, AUTH_URL/AUTH_TRUST_HOST in env example

This commit is contained in:
Chandler Copeland
2026-04-03 17:21:01 -06:00
parent 3da9610c6f
commit 07cfaf0511
4 changed files with 29 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
# Stage 1: Install production dependencies
# Stage 1: Install all dependencies (including devDeps needed for build)
FROM --platform=linux/amd64 node:20-slim AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
RUN npm ci
# Stage 2: Build the application
FROM --platform=linux/amd64 node:20-slim AS builder