Spaces:
Build error
Build error
| FROM oven/bun as build | |
| WORKDIR /app | |
| COPY . . | |
| RUN bun install --frozen-lockfile && bun run build | |
| FROM oven/bun:slim | |
| WORKDIR /app | |
| COPY --from=build /.output ./ | |
| EXPOSE 7860 | |
| ENV PORT=7860 HOST=0.0.0.0 | |
| CMD ["bun", ".output/server/index.mjs"] | |