File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ ARG Ecs_Cli_Version=1.20.0
1010ARG Eks_Cli_Version=0.25.0
1111ARG Google_Cloud_Cli_Version=339.0.0-0
1212ARG Helm_Version=v3.7.1
13- ARG Java_Jdk_Version=11.0.15+10-0ubuntu0. 18.04.1
13+ ARG Java_Jdk_Version=11.0.17+8-1ubuntu2~ 18.04
1414ARG Kubectl_Version=1.18.8-00
1515ARG Octopus_Cli_Version=7.4.1
1616ARG Octopus_Client_Version=8.8.3
@@ -66,6 +66,7 @@ RUN DOTNET_CLI_TELEMETRY_OPTOUT=1 && \
6666
6767# Get JDK
6868# https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-on-ubuntu-18-04
69+ # https://packages.ubuntu.com/bionic/openjdk-11-dbg
6970RUN apt-get install -y openjdk-11-jdk-headless=${Java_Jdk_Version}
7071
7172# Install common Java tools
@@ -102,9 +103,12 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.
102103 wget -q -O - https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - && \
103104 apt-get update && apt-get install -y google-cloud-sdk=${Google_Cloud_Cli_Version}
104105
105- # Get python & groff
106+ # Get python3 & groff
106107RUN apt-get install -y python3-pip groff
107108
109+ # Install python2
110+ RUN apt-get install -y python-minimal
111+
108112# Get AWS CLI
109113# https://docs.aws.amazon.com/cli/latest/userguide/install-linux.html#install-linux-awscli
110114RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${Aws_Cli_Version}.zip" -o "awscliv2.zip" && \
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Describe 'installed dependencies' {
1818 }
1919
2020 It ' has java installed' {
21- java -- version | Should - beLike " *11.0.15 *"
21+ java -- version | Should - beLike " *11.0.17 *"
2222 $LASTEXITCODE | Should - be 0
2323 }
2424
You can’t perform that action at this time.
0 commit comments