[api] compose 설정 및 dockerfile 생성 jenkinsfile생성 logback 기본생성 배너파일추가

This commit is contained in:
2026-02-02 16:29:33 +09:00
parent cbc0d644be
commit 75d1dc0dff
8 changed files with 179 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
pipeline {
agent any
options {
timestamps()
disableConcurrentBuilds()
}
environment {
// ===== Registry =====
}
stages {
stage('1) Git check out') {
steps {
checkout scm
}
}
stage('2) Build (Gradle)') {
steps {
sh '''
set -e
chmod +x ./gradlew
./gradlew clean build -x test
'''
}
}
}
}