diff --git a/Dockerfile b/Dockerfile index 5e4aa3c..be85acc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,14 @@ FROM oven/bun AS build WORKDIR /home/node/app COPY . . -RUN bun tsc +RUN bun install +RUN bun run tsc + FROM oven/bun WORKDIR /home/node/app COPY . . +RUN bun install CMD [ "bun", "run", "src/index.ts"] \ No newline at end of file diff --git a/bun.lockb b/bun.lockb index d557bb5..a1f4f67 100644 Binary files a/bun.lockb and b/bun.lockb differ