mirror of
https://github.com/corda/corda.git
synced 2024-12-26 08:01:09 +00:00
1e227fdfc4
* NOTICK - Don't know what the JIRA is but wanted to share. * Updates to resolve bukld issues * NOTICK: Fixed JDK11 version to prevent capsule version error * ENT-6711: Added comment for use of jackson_kotlin_version. * ENT-6711: Avoid deprecation warning, switched to the default method. Co-authored-by: Chris Cochrane <chris.cochrane@r3.com> Co-authored-by: Adel El-Beik <adel.el-beik@r3.com>
9 lines
443 B
Plaintext
9 lines
443 B
Plaintext
FROM azul/zulu-openjdk:11.0.14
|
|
RUN apt-get update && apt-get install -y curl apt-transport-https \
|
|
ca-certificates \
|
|
curl \
|
|
gnupg2 \
|
|
software-properties-common \
|
|
wget
|
|
ARG USER="stresstester"
|
|
RUN useradd -m ${USER} |