diff options
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | Makefile | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index b36bda020..3b5d7e595 100644 --- a/Dockerfile +++ b/Dockerfile @@ -290,7 +290,8 @@ ARG BUILDARCH=amd64 LABEL org.opencontainers.image.title="bun ${BUILDARCH} (glibc)" LABEL org.opencontainers.image.source=https://github.com/jarred-sumner/bun COPY --from=build_release ${BUN_RELEASE_DIR}/bun /opt/bun/bin/bun -COPY --from=build_release ${BUN_RELEASE_DIR}/bun.dSYM.gz /opt/bun/bin/bun.dSYM.gz +COPY --from=build_release ${BUN_RELEASE_DIR}/bun-profile /opt/bun/bin/bun-profile + WORKDIR /opt/bun ENTRYPOINT [ "/opt/bun/bin/bun" ] @@ -269,6 +269,7 @@ PLATFORM_LINKER_FLAGS = \ -fdata-sections \ -static-libstdc++ \ -static-libgcc \ + -Wl,--compress-debug-sections,zlib \ ${STATIC_MUSL_FLAG} endif |