|
1234567891011121314151617181920212223242526272829 |
- buildscript {
- repositories {
- gradlePluginPortal()
- }
- dependencies {
- classpath "gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:0.9.11"
- }
- }
-
- apply plugin: com.google.cloud.tools.jib.gradle.JibPlugin
-
- jib {
- from {
- image = 'openjdk:8-jre-alpine'
- }
- to {
- image = 'tpf:latest'
- }
- container {
- entrypoint = ['sh', '-c', 'chmod +x /entrypoint.sh && sync && /entrypoint.sh']
- ports = ['8080']
- environment = [
- SPRING_OUTPUT_ANSI_ENABLED: 'ALWAYS',
- JHIPSTER_SLEEP: '0'
- ]
- useCurrentTimestamp = true
- }
- }
-
|