Olivier Massot 7 months ago
parent
commit
f2319d7137
1 changed files with 6 additions and 0 deletions
  1. 6 0
      Dockerfile

+ 6 - 0
Dockerfile

@@ -2,6 +2,12 @@ FROM node:23.8.0
 
 ENV WORKDIR /home/workspace
 
+RUN apt-get update && apt-get install -y \
+    python3 \
+    make \
+    g++ \
+    && rm -rf /var/lib/apt/lists/*
+
 RUN corepack enable; \
     yarn set version 4.3.1;