diff --git a/Jenkinsfile b/Jenkinsfile index bd70a54..3d65f89 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,16 @@ pipeline { agent any + environment { DOCKER_CONTAINER_NAME = 'stein-node' APP_VOLUME_FRONT = '/home/node/front' // 컨테이너 내부 경로 + NODEJS_VERSION = 'JenStein' // 위에서 설정한 NodeJS 설치 이름 } + tools { + nodejs "${NODEJS_VERSION}" + } stages { stage('Clone Repository') { steps {