chore: build docker image correctly with libstdc++ and node_modules

This commit is contained in:
Menci
2025-10-26 18:35:10 +08:00
parent 5f866b6e72
commit 3cf43e18c3
+5 -1
View File
@@ -21,7 +21,11 @@ RUN bun build \
src/index.ts
# ================================================
FROM alpine:latest
FROM debian:12
RUN apt-get update && \
apt-get install -y libstdc++6 && \
apt-get clean
WORKDIR /app