fix: pin bun to 1.3.11 in Dockerfiles, fix husky CI crash, fix workspace:* npm compat

This commit is contained in:
2026-04-08 03:43:52 +00:00
parent 92318608dd
commit 7cbc0c9178
5 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -4,7 +4,7 @@
# =============================================================================
# ---- Stage 1: Install production dependencies ----
FROM oven/bun:1 AS deps
FROM oven/bun:1.3.11 AS deps
WORKDIR /app
@@ -18,7 +18,7 @@ COPY dalpuri/package.json ./dalpuri/package.json
RUN bun install --frozen-lockfile --production
# ---- Stage 2: Build ----
FROM oven/bun:1 AS build
FROM oven/bun:1.3.11 AS build
WORKDIR /app
@@ -110,7 +110,7 @@ ENV MANAGER_SOCKET_URL=http://localhost:8671
CMD ["./worker"]
# ---- Stage 6: Migration runner ----
FROM oven/bun:1 AS migration
FROM oven/bun:1.3.11 AS migration
WORKDIR /app
+1 -1
View File
@@ -46,7 +46,7 @@
"blakets": "^0.1.12",
"cors": "^2.8.6",
"cuid": "^3.0.0",
"dalpuri": "workspace:*",
"dalpuri": "*",
"hono": "^4.11.5",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
+1 -1
View File
@@ -32,7 +32,7 @@
"blakets": "^0.1.12",
"cors": "^2.8.6",
"cuid": "^3.0.0",
"dalpuri": "workspace:*",
"dalpuri": "*",
"hono": "^4.11.5",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
+1 -1
View File
@@ -11,7 +11,7 @@
"commit": "cz",
"commit:signed": "cz -S",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
"prepare": "husky install || true"
},
"repository": {
"type": "git",
+1 -1
View File
@@ -1,4 +1,4 @@
FROM oven/bun:latest AS base
FROM oven/bun:1.3.11 AS base
WORKDIR /app