Add python3 to Dockerfile for better-sqlite3 compilation on Node 24

This commit is contained in:
Ryderjj89
2025-10-01 18:25:35 -04:00
parent 9129a9aa40
commit f3b612896a

View File

@@ -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