Chore: Improve how we install Python (#81695)

This commit is contained in:
Fabrizio
2024-02-01 13:27:29 +01:00
committed by GitHub
parent fe1ed307c0
commit 2d60c0123b
2 changed files with 13 additions and 24 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ def yarn_install_step():
"image": images["node"],
"commands": [
# Python is needed to build `esfx`, which is needed by `msagl`
"apk add --no-cache --virtual .gyp python3 make g++ && ln -sf /usr/bin/python3 /usr/bin/python",
"apk add --update g++ make python3 && ln -sf /usr/bin/python3 /usr/bin/python",
"yarn install --immutable",
],
"depends_on": [],