From e1cdfd88d891c8b4ae6102fac442c19b61448307 Mon Sep 17 00:00:00 2001 From: Joschua Becker Date: Thu, 5 Feb 2026 13:34:04 +0100 Subject: [PATCH] fix: missing python build utilities --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4b2788..9ef757a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -FROM node:25-alpine as build-stage +FROM node:25-alpine AS build-stage WORKDIR /app +RUN apk add --no-cache python3 make g++ py3-setuptools RUN npm install -g pnpm COPY package.json . COPY pnpm-lock.yaml .