FROM oven/bun:1 AS base USER root WORKDIR /usr/src/app COPY .. /usr/src/app RUN bun install EXPOSE 3000/tcp ENTRYPOINT [ "bun", "start" ]