Commit e300395a authored by Spiros Koulouzis's avatar Spiros Koulouzis

rename folder

parent 7b831d65
Pipeline #17 canceled with stages
node {
def app
stage('Clone repository') {
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git'
}
}
node('docker') {
stage('Clone repository on slave') {
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git'
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
sh "cd sure_tosca-flask-server"
app = docker.build("sure-tosca/alogo53")
}
stage('Test image') {
app.inside {
sh 'echo "Tests passed"'
}
}
stage('Push image') {
//docker.withRegistry('https://registry.hub.docker.com', 'docker-hub') {
// app.push("${env.BUILD_NUMBER}")
// app.push("latest")
//}
}
}
......@@ -21,7 +21,7 @@
<component name="ProjectId" id="1TI7vNZs1Z3y1uB6wXCH5F47r0F" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="PropertiesComponent">
<property name="last_opened_file_path" value="$PROJECT_DIR$/service" />
<property name="last_opened_file_path" value="$PROJECT_DIR$/../../DevOpsTutorial/python-flask-server-generated" />
<property name="settings.editor.selected.configurable" value="com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable" />
</component>
<component name="RecentsManager">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment