--sourcemap을 통해 충돌 해결률을 높임

--bytecode를 도입하려고 하였지만 여러 오류 발생으로 하지 못함
This commit is contained in:
imnyang 2025-05-20 06:27:10 +09:00
commit 93b1c5e1b3

View file

@ -14,7 +14,7 @@ RUN mkdir -p /code/app/temp
RUN bun install
# Build the project
RUN bun build index.ts --compile --minify --outfile ./run
RUN bun build index.ts --compile --minify --sourcemap --target bun --outfile ./run
FROM oven/bun:alpine AS runner
LABEL maintainer="@imnya"