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
2 changes: 1 addition & 1 deletion cicd/build17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM azul/zulu-openjdk-alpine:21.0.2-21.32
FROM azul/zulu-openjdk-alpine:26.0.2.1-26.32
RUN apk update; apk upgrade; apk --update add --no-cache gradle maven bash zsh git

Check warning on line 2 in cicd/build17/Dockerfile

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Sort these package names alphanumerically.

See more on https://sonarcloud.io/project/issues?id=ds2_docker-templates&issues=AaA1Xzuj88Jwv2L8x4Uf&open=AaA1Xzuj88Jwv2L8x4Uf&pullRequest=445
WORKDIR /src
ENV JAVA_HOME=/usr/lib/jvm/zulu17
ENV LANG=de_DE.UTF-8
RUN rm /usr/lib/jvm/default-jvm; ln -s ${JAVA_HOME} /usr/lib/jvm/default-jvm

Check warning on line 6 in cicd/build17/Dockerfile

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Surround this variable with double quotes; otherwise, it can lead to unexpected behavior.

See more on https://sonarcloud.io/project/issues?id=ds2_docker-templates&issues=AaA1Xzuj88Jwv2L8x4Ug&open=AaA1Xzuj88Jwv2L8x4Ug&pullRequest=445
RUN adduser -s /bin/zsh -D -u 1000 cicd
RUN rm -rf /var/cache/apk/*

Expand Down
Loading