From 4333a9ec65e92fa058df6399f37b9975f70594b1 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 27 Dec 2020 17:05:58 -0800 Subject: Add Dockerfile and Jenkinsfile This is the first step in improving my coleslaw builds. For this commit the only thing that it does is build the project into a staging directory. --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Jenkinsfile (limited to 'Jenkinsfile') diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b04cbd4 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +pipeline { + agent { dockerfile true } + + stages { + stage('Build') { + steps { + sh coleslaw + } + } + } +} -- cgit v1.2.3-54-g00ecf