From e92e57bee02ff1b2611d838b75eb121671d6919e Mon Sep 17 00:00:00 2001 From: matthewkeil Date: Mon, 3 Jun 2024 11:19:46 +0200 Subject: [PATCH] feat: add distutils to build phase of Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a1a2d1a2c82..fdab1140af47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN cd packages/cli && GIT_COMMIT=${COMMIT} yarn write-git-data # Note: This step is redundant for the host arch FROM node:22-alpine as build_deps WORKDIR /usr/app -RUN apk update && apk add --no-cache g++ make python3 && rm -rf /var/cache/apk/* +RUN apk update && apk add --no-cache g++ make python3 py3-setuptools && rm -rf /var/cache/apk/* COPY --from=build_src /usr/app .