FROM oven/bun:1.2.6-slim WORKDIR /app COPY package.json . RUN bun i COPY . . EXPOSE 3000 CMD ["bun", "run", "start"]