FROM debian:12-slim RUN apt-get update && apt-get install -y curl unzip RUN curl -fsSL https://bun.sh/install | bash WORKDIR /app COPY . . RUN /root/.bun/bin/bun install EXPOSE 3000 CMD ["/root/.bun/bin/bun", "run", "prod"]