From 07e352789a335bb043ab110e7c5ba2c88b42854d Mon Sep 17 00:00:00 2001 From: minuk926 Date: Wed, 27 Apr 2022 14:39:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20docker=20=EC=84=A4=EC=A0=95=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=20=20=20=20=20=20build=EB=B3=84=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=20=EB=B6=84=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jenkinsfile-build | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jenkinsfile-build diff --git a/jenkinsfile-build b/jenkinsfile-build new file mode 100644 index 0000000..35d0f14 --- /dev/null +++ b/jenkinsfile-build @@ -0,0 +1,9 @@ + node { + stage('Clone repository') { + checkout scm + } + + stage('Build docker image') { + app = docker.build("xit/opst-fo:latest") #docker image build 및 이름을 xit/opst-fo:$BUILD_NUMBER(빌드번호) 설정 + } +} \ No newline at end of file