Fix gradle version used in asset-transfer-basic/chaincode-java image build to 7 (#961)

This patch fixes the gradle version used in asset-transfer-basic/
chaincode-java build to 7.

The reason is because the gradle version in the gradle:jdk11-alpine
image is updated from 7 to 8, which seems to cause the build to fail.

Signed-off-by: Tatsuya Sato <tatsuya.sato.so@hitachi.com>
This commit is contained in:
Tatsuya Sato 2023-03-02 21:05:44 +09:00 committed by GitHub
parent 128950edca
commit 199e290f5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
# the first stage
FROM gradle:jdk11-alpine AS GRADLE_BUILD
FROM gradle:7-jdk11-alpine AS GRADLE_BUILD
# copy the build.gradle and src code to the container
COPY src/ src/