Trying this again...
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m48s

This commit is contained in:
2026-01-17 01:32:07 -07:00
parent bebc4b2743
commit aae8693dd3
5 changed files with 1178 additions and 1 deletions

View File

@@ -24,10 +24,12 @@ WORKDIR /app
COPY --from=prod-deps /app/node_modules ./node_modules
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/drizzle ./drizzle
COPY --from=builder /app/scripts ./scripts
COPY package.json ./
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]
CMD ["sh", "-c", "npm run migrate && node ./dist/server/entry.mjs"]