mirror of
https://github.com/anomalyco/opencode.git
synced 2026-06-02 06:16:48 +02:00
fix: bun install
This commit is contained in:
@@ -17,12 +17,12 @@ COPY --from=pruner /app/out/json/ ./
|
|||||||
|
|
||||||
# Bun 1.3.x needs the pruned workspace globs and lockfile metadata refreshed before the frozen production install.
|
# Bun 1.3.x needs the pruned workspace globs and lockfile metadata refreshed before the frozen production install.
|
||||||
RUN bun -e 'const packageJson = await Bun.file("package.json").json(); packageJson.workspaces.packages = Array.from(new Bun.Glob("packages/**/package.json").scanSync(".")).map((file) => file.slice(0, -"/package.json".length)).sort(); await Bun.write("package.json", JSON.stringify(packageJson, null, 2) + "\n")'
|
RUN bun -e 'const packageJson = await Bun.file("package.json").json(); packageJson.workspaces.packages = Array.from(new Bun.Glob("packages/**/package.json").scanSync(".")).map((file) => file.slice(0, -"/package.json".length)).sort(); await Bun.write("package.json", JSON.stringify(packageJson, null, 2) + "\n")'
|
||||||
RUN rm -f bun.lock && bun install --lockfile-only --ignore-scripts
|
RUN rm -f bun.lock && bun install --filter @opencode-ai/stats-server --lockfile-only --ignore-scripts
|
||||||
RUN bun install --frozen-lockfile --production --ignore-scripts
|
RUN bun install --filter @opencode-ai/stats-server --frozen-lockfile --production --ignore-scripts
|
||||||
|
|
||||||
FROM base AS runner
|
FROM base AS runner
|
||||||
|
|
||||||
COPY --from=installer /app/node_modules ./node_modules
|
COPY --from=installer /app ./
|
||||||
COPY --from=pruner /app/out/full/ ./
|
COPY --from=pruner /app/out/full/ ./
|
||||||
|
|
||||||
WORKDIR /app/packages/stats/server
|
WORKDIR /app/packages/stats/server
|
||||||
|
|||||||
Vendored
+2
-1
@@ -153,6 +153,7 @@ declare module "sst" {
|
|||||||
}
|
}
|
||||||
"STRIPE_WEBHOOK_SECRET": {
|
"STRIPE_WEBHOOK_SECRET": {
|
||||||
"type": "sst.sst.Linkable"
|
"type": "sst.sst.Linkable"
|
||||||
|
"value": string
|
||||||
}
|
}
|
||||||
"Stat": import("@cloudflare/workers-types").Service
|
"Stat": import("@cloudflare/workers-types").Service
|
||||||
"StatsDatabase": {
|
"StatsDatabase": {
|
||||||
@@ -344,4 +345,4 @@ declare module "sst" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
import "sst"
|
import "sst"
|
||||||
export {}
|
export {}
|
||||||
Reference in New Issue
Block a user