FROM bun:latest WORKDIR /app COPY package.json bun.lock ./ COPY . . RUN bun run build EXPOSE 9123 CMD ["bun", "run", "start"]