diff --git a/Dockerfile b/Dockerfile index 0c61a20..844a5fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ FROM oven/bun WORKDIR /app COPY --from=build /app/dist /app/dist -COPY --from=build /app/package.json /app/dist +COPY --from=build /app/package.json /app CMD ["bun", "run", "dist/index.js"] diff --git a/scripts/build.ts b/scripts/build.ts index 1b6f181..949a248 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -26,7 +26,6 @@ await Bun.build({ outdir: "dist", target: "bun", splitting: true, - sourcemap: "external", naming: { entry: "[dir]/[name].[ext]", chunk: "chunk/[name]-[hash].[ext]",