mirror of
https://github.com/corda/corda.git
synced 2024-12-22 06:17:55 +00:00
787d0cde99
Use Specific JDK version not the latest Java 11 base image
10 lines
444 B
Plaintext
10 lines
444 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}
|