diff --git a/Dockerfile b/Dockerfile index abd8190..79788db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM oven/bun:latest as base +WORKDIR /app + # Copy the lock and package file -COPY bun.lockb package.json ./ +COPY bun.lockb package.json tsconfig.json ./ # Copy source code COPY src ./src