FROM oven/bun:1
WORKDIR /app
COPY package.json bunfig.toml ./
RUN bun install
COPY . .
EXPOSE 8787
CMD ["bun","run","server.ts"]
