FROM oven/bun:latest
WORKDIR /app
COPY ./package.json /app
COPY ./bun.lockb /app
RUN bun install
ADD . /app
CMD [ "bun", "run", "/app/src/index.ts"]