first commit!
Build Images and Deploy / Update-PROD-Stack (push) Failing after 15s

This commit is contained in:
2026-03-18 15:44:49 -04:00
commit 3b479f8382
56 changed files with 7387 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
FROM node:20-alpine
WORKDIR /app
# Required for Prisma on Alpine
RUN apk add --no-cache openssl
# Install all deps (including devDeps for tsx worker runtime + build tooling)
COPY package*.json ./
RUN npm ci
# Copy source
COPY . .
# Generate Prisma client and build Next.js (postinstall handles prisma generate)
RUN npm run build
ENV NODE_ENV=production
EXPOSE 3000
# Default: run web server. Worker container overrides this CMD.
CMD ["npm", "start"]