fix: move drizzle-kit to deps + remove --production install flag
Some checks are pending
CI/CD / check (push) Waiting to run
CI/CD / deploy (push) Blocked by required conditions

This commit is contained in:
2026-01-30 14:24:23 +00:00
parent e0e0b48321
commit 73e9c81a68
2 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ WORKDIR /app
# Install dependencies
FROM base AS install
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile --production
RUN bun install --frozen-lockfile
# Production image
FROM base AS release

View File

@@ -17,8 +17,7 @@
},
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8"
"@types/pg": "^8.16.0"
},
"peerDependencies": {
"typescript": "^5"
@@ -35,6 +34,7 @@
"pg-boss": "^12.7.0",
"postgres": "^3.4.8",
"resend": "^6.8.0",
"zod": "^4.3.6"
"zod": "^4.3.6",
"drizzle-kit": "^0.31.8"
}
}
}