feature/Feature-1 #4

Merged
jakub merged 39 commits from feature/Feature-1 into master 2021-10-20 15:40:59 +00:00
2 changed files with 10 additions and 2 deletions
Showing only changes of commit b8ac1817d1 - Show all commits

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM node:14-alpine
RUN apk add -U subversion

9
Jenkinsfile vendored
View File

@@ -1,11 +1,16 @@
pipeline {
agent any
agent { dockerfile true }
stages {
stage('Init') {
steps {
sh 'node --version'
}
}
stage('Build') {
steps {
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
echo 'Building..'
sh 'docker info'
}
}
stage('Test') {