Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions devops/docker/maven-build-image/jdk-8u162b12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM anapsix/alpine-java:8u162b12_jdk

############################# Install tools and deps #########################################
RUN apk update && apk add --no-cache curl tar bash procps git openssh htop xmlstarlet libxslt
RUN apk update && apk add --no-cache curl tar bash procps git openssh htop xmlstarlet libxslt
############################# End Install tools and deps #####################################

############################# Install Groovy ################################
ENV GROOVY_HOME /opt/groovy
ARG GROOVY_VERSION=2.4.15
ARG GROOVY_VERSION=5.0.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we are not using jdk8 image any more.
did yuo mean to update jdk21 docker file ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah my bad.


RUN set -o errexit -o nounset && echo "Installing build dependencies" && \
apk add --no-cache --virtual .build-deps ca-certificates gnupg openssl unzip && \
Expand Down