From f3b612896a0e9306d8d7d0968d49440ce5a901fc Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Wed, 1 Oct 2025 18:25:35 -0400 Subject: [PATCH] Add python3 to Dockerfile for better-sqlite3 compilation on Node 24 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8be599a..f3bc03a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:24-alpine -# Install dumb-init for proper signal handling -RUN apk add --no-cache dumb-init +# Install dumb-init and Python for native builds +RUN apk add --no-cache dumb-init python3 # Set working directory WORKDIR /app