FROM oven/bun:latest WORKDIR /usr/src/app COPY package*.json ./ RUN bun install --production COPY . . EXPOSE 3000 CMD ["bun", "app.js"]