Skip to content

Commit

Permalink
shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
lemeurherve committed Apr 24, 2024
1 parent a181b22 commit 1e0037b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion alpine/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apk add --no-cache \
&& rm -fr /var/cache/apk/* \
&& /usr/bin/jdk-download.sh alpine

ENV PATH=/opt/jdk-${JAVA_VERSION}/bin:$PATH
ENV PATH="/opt/jdk-${JAVA_VERSION}/bin:${PATH}"

# Generate smaller java runtime without unneeded files
# for now we include the full module path to maintain compatibility
Expand Down
2 changes: 1 addition & 1 deletion debian/bookworm-slim/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& /usr/bin/jdk-download.sh

ENV PATH=/opt/jdk-${JAVA_VERSION}/bin:$PATH
ENV PATH="/opt/jdk-${JAVA_VERSION}/bin:${PATH}"

# Generate smaller java runtime without unneeded files
# for now we include the full module path to maintain compatibility
Expand Down
2 changes: 1 addition & 1 deletion debian/bookworm/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& /usr/bin/jdk-download.sh

ENV PATH=/opt/jdk-${JAVA_VERSION}/bin:$PATH
ENV PATH="/opt/jdk-${JAVA_VERSION}/bin:${PATH}"

# Generate smaller java runtime without unneeded files
# for now we include the full module path to maintain compatibility
Expand Down
2 changes: 1 addition & 1 deletion rhel/ubi9/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN dnf install --disableplugin=subscription-manager --setopt=install_weak_deps=
&& dnf clean --disableplugin=subscription-manager all \
&& /usr/bin/jdk-download.sh

ENV PATH=/opt/jdk-${JAVA_VERSION}/bin:$PATH
ENV PATH="/opt/jdk-${JAVA_VERSION}/bin:${PATH}"

# Generate smaller java runtime without unneeded files
# for now we include the full module path to maintain compatibility
Expand Down

0 comments on commit 1e0037b

Please sign in to comment.