[Infra] Spring Boot Pipeline 구축
[Infra] Spring Boot Pipeline 구축DockerfileFROM openjdk:{버전}LABEL authors="{작성자}"COPY build/libs/*.jar app.jarENTRYPOINT ["java", "-jar", "app.jar"] backend 폴더 내에 추가Pipeline멀티브런치를 이용해 분리했을 경우, Manged File > groovy file > pipeline jenkins 파일 생성해서 작성pipeline { agent any tools { gradle "gradle" } options { disableConcurrentBuilds() }tools: 파이프라인에서 사용할 도구를 정의, gradle 도구 사..