Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
preetkaran20 authored Dec 29, 2022
1 parent fb419e6 commit dbc4e5e
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,31 @@ spotless {
jib {
from {
image = 'openjdk:8-jre-alpine'
platforms {
platform {
architecture = 'amd64'
os = 'linux'
}
platform {
architecture = 'arm64'
os = 'linux'
}
platform {
architecture = '386'
os = 'linux'
}
platform {
architecture = 's390x'
os = 'linux'
}
platform {
architecture = 'ppc64le'
os = 'linux'
}
}
to {
image = 'sasanlabs/owasp-vulnerableapp:unreleased'
}
to {
image = 'sasanlabs/owasp-vulnerableapp:unreleased'
}
}

jacoco {
Expand Down

0 comments on commit dbc4e5e

Please sign in to comment.