From 3cf43e18c3c95f365c99e6ea403a409a47a05e01 Mon Sep 17 00:00:00 2001 From: Menci Date: Sun, 26 Oct 2025 18:35:10 +0800 Subject: [PATCH] chore: build docker image correctly with libstdc++ and node_modules --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9bef981..7e62486 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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