Ashcon Partovi
Ashcon Partovi
Based on the output of the command, even though you are running `bun run`, the script is using `node`. What if you try `bun --bun run build`?
Yep, these are good points. We decided to punt on this, we'll have to consider this in the future.
Try something like this instead, distroless does not have a shell so you can't run `RUN` commands. ```dockerfile FROM oven/bun:1.0.3-slim AS builder WORKDIR /app COPY ./package.json ./bun.lockb ./ RUN bun...
It looks like this can be changed with: https://docs.docker.com/engine/reference/builder/#shell
See what we [changed](https://bun.sh/blog/bun-v1.2#behaviour-changes) in Bun 1.2.
I, @Electroid, hereby agree and consent to having my contributions to PGM project be relicensed under the terms of AGPL with "Minecraft" linking exception, irrevocably and without exception.
Hi there, thanks for opening a draft for this. Before you start a lot of this work though, take a look at this: https://github.com/oven-sh/bun/pull/6129#issuecomment-1739673236 > Right now our focus is...
Did you run `bun install`?
Could you share the code you used to reproduce this?
Are you bundling with `webpack`? This looks like either a webpack or drizzle issue.