No need to symlink python, done in base image now

This commit is contained in:
Jamie Curnow 2022-01-11 11:17:19 +10:00
parent 818b9595aa
commit 5fb0cc5fab

6
Jenkinsfile vendored
View File

@ -62,14 +62,14 @@ pipeline {
stage('Backend') { stage('Backend') {
steps { steps {
echo 'Checking Syntax ...' echo 'Checking Syntax ...'
sh 'docker pull node:latest' sh 'docker pull nginxproxymanager/nginx-full:certbot-node'
// See: https://github.com/yarnpkg/yarn/issues/3254 // See: https://github.com/yarnpkg/yarn/issues/3254
sh '''docker run --rm \\ sh '''docker run --rm \\
-v "$(pwd)/backend:/app" \\ -v "$(pwd)/backend:/app" \\
-v "$(pwd)/global:/app/global" \\ -v "$(pwd)/global:/app/global" \\
-w /app \\ -w /app \\
node:latest \\ nginxproxymanager/nginx-full:certbot-node \\
sh -c "ln -s /usr/bin/python3 /usr/bin/python && yarn install && yarn eslint . && rm -rf node_modules" sh -c "yarn install && yarn eslint . && rm -rf node_modules"
''' '''
echo 'Docker Build ...' echo 'Docker Build ...'