pipeline {
	dockerfile true
	stages {
		stage('dev') {
			steps {
				sh 'composer'
			}
		}
	}
}