From fff015f8395c110b977c54cb0eab5ae94c7be287 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Mon, 8 Dec 2025 18:13:26 +0900 Subject: [PATCH] Update Dockerfile --- Dockerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f4bbae..ce9b53b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,13 +15,6 @@ RUN ~/.bun/bin/bun install ENV NODE_ENV=production COPY ./src ./src -RUN ~/.bun/bin/bun build \ - --compile \ - --minify-whitespace \ - --minify-syntax \ - --outfile server \ - src/index.ts - -CMD ["./server"] +CMD ["/root/.bun/bin/bun", "run", "src/index.ts"] EXPOSE 3000