From 8cefbf0897c6e5f4495afbc35c6af1d84e1b62a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Thu, 15 Feb 2024 10:47:38 +0100 Subject: [PATCH] add python --- apps/sdk-api/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/sdk-api/Dockerfile b/apps/sdk-api/Dockerfile index d60475cd..c8ccb6f8 100644 --- a/apps/sdk-api/Dockerfile +++ b/apps/sdk-api/Dockerfile @@ -29,11 +29,12 @@ RUN corepack enable ARG NODE_VERSION=20 RUN apt update \ - && apt install -y curl \ + && apt install -y curl python3 make g++ \ && curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n \ && bash n $NODE_VERSION \ && rm n \ - && npm install -g n + && npm install -g n \ + && rm -rf /var/cache/apk/* WORKDIR /app