Hack for python binary in newer node images

This commit is contained in:
Jamie Curnow 2021-12-22 11:05:57 +10:00 committed by Paul Mansfield
parent 3dfe23836c
commit 2ac1026e4b

2
Jenkinsfile vendored
View File

@ -68,7 +68,7 @@ pipeline {
-v "$(pwd)/global:/app/global" \\
-w /app \\
node:latest \\
sh -c "yarn install && yarn eslint . && rm -rf node_modules"
sh -c "ln -s /usr/bin/python3 /usr/bin/python && yarn install && yarn eslint . && rm -rf node_modules"
'''
echo 'Docker Build ...'