목차 1. Dockerizing (도커라이징) pipeline { agent any environment { SOURCECODE_JENKINS_CREDENTIAL_ID = 'jei0486' SOURCE_CODE_URL = 'https://github.com/jei0486/demo-fe' RELEASE_BRANCH = 'main' REGISTRY = 'jei0486/demo-fe' } stages { stage('init') { steps { echo 'init' echo "Current workspace : ${workspace}" } } stage('clone') { steps { echo 'clone' git url: "$SOURCE_CODE_URL", branch: "$RELEASE_BRANCH",..