Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add libstdc++ and libgcc to Alpine image for Bun binary
  • Loading branch information
maff committed Mar 14, 2026
commit c6119530f50a29e8e3c67fd3260e53dc906c2235
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN bun build ./index.ts --compile --outfile git-that-semver
# release stage
FROM alpine:3 AS release

RUN apk add --no-cache git
RUN apk add --no-cache git libstdc++ libgcc

COPY entrypoint.sh /entrypoint.sh
COPY entrypoint-action.sh /entrypoint-action.sh
Expand Down
Loading