Skip to content

Commit

Permalink
Added dockerfile zip back in to allow build to run.
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenEddies committed Feb 23, 2022
1 parent e792dbb commit 967c797
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ project(':edc-backend') {
files tasks.installDist.outputs
pull true
}

dockerfileZip {
archiveFileName = 'edc-backend.zip'
destinationDirectory = file('build/docker-zip')
}
}

project(':edc-config-util') {
Expand Down Expand Up @@ -91,6 +96,11 @@ project(':edc-config-util') {
files tasks.installDist.outputs
pull true
}

dockerfileZip {
archiveFileName = 'edc-config-util.zip'
destinationDirectory = file('build/docker-zip')
}
}

project('edc-frontend') {
Expand Down Expand Up @@ -126,6 +136,11 @@ project('edc-frontend') {
files 'nginx/ng.conf'
pull true
}

dockerfileZip {
archiveFileName = 'edc-frontend.zip'
destinationDirectory = file('build/docker-zip')
}
}

project('edc-deploy') {
Expand Down

0 comments on commit 967c797

Please sign in to comment.