Fix various bugs

This commit is contained in:
Owen
2025-10-13 20:00:43 -07:00
parent 244d05adb1
commit cd8062ada3
6 changed files with 13 additions and 5 deletions

View File

@@ -29,6 +29,9 @@ RUN if [ "$DATABASE" = "pg" ]; then \
node esbuild.mjs -e server/setup/migrationsSqlite.ts -o dist/migrations.mjs; \
fi
# test to make sure the build output is there and error if not
RUN test -f dist/server.mjs
RUN npm run build:cli
FROM node:22-alpine AS runner