Update Dockerfile

This commit is contained in:
2025-12-08 18:13:26 +09:00
parent 6ddb3b84f4
commit fff015f839
+1 -8
View File
@@ -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