Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • eclipsefdn/it/websites/iot.eclipse.org
  • malowe/iot.eclipse.org
  • zhoufang/iot.eclipse.org
  • zacharysabourin/iot.eclipse.org
  • oliviergoulet/iot.eclipse.org
5 results
Show changes
Commits on Source (1)
......@@ -14,6 +14,15 @@ pipeline {
command:
- cat
tty: true
resources:
limits:
cpu: 1
memory: 1Gi
- name: jnlp
resources:
limits:
cpu: 1
memory: 1Gi
'''
}
}
......@@ -77,7 +86,7 @@ pipeline {
}
steps {
sh '''
docker build --no-cache --pull --build-arg NGINX_IMAGE_TAG="${BASE_NGINX_IMAGE_TAG}" --build-arg HUGO_VERSION="${hugo_version}" --build-arg NODE_VERSION="${node_version}" -t ${IMAGE_NAME}:${TAG_NAME} -t ${IMAGE_NAME}:latest .
docker build --pull --build-arg NGINX_IMAGE_TAG="${BASE_NGINX_IMAGE_TAG}" --build-arg HUGO_VERSION="${hugo_version}" --build-arg NODE_VERSION="${node_version}" -t ${IMAGE_NAME}:${TAG_NAME} -t ${IMAGE_NAME}:latest .
'''
}
}
......