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