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 5.x/eclipse-temurin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG JVM_VERSION=11.0.28_6-jre-alpine
ARG JVM_VERSION=11.0.29_7-jre-alpine
#use Maven image to install maven
FROM maven:3.9-eclipse-temurin-21-alpine as maven-install-build

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# Use JVM base
FROM eclipse-temurin:${JVM_VERSION}
Expand All @@ -8,79 +8,79 @@
LABEL org.opencontainers.image.authors="Anas OUFDOU <oufdou.anas@gmail.com>"


ENV MAVEN_HOME /usr/share/maven

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 11 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV MAVEN_CONFIG "$USER_HOME_DIR/.m2"

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_HOME_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 12 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV MVN_OPTION="-DoverWriteReleases=true -DoverWriteSnapshots=true -DoverWriteIfNewer=true -DexcludeTransitive=true"

ARG JMETER_VERSION="5.5"
ARG WITH_BASE_PLUGINS="true"
ENV WITH_BASE_PLUGINS ${WITH_BASE_PLUGINS}

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 17 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_DOWNLOAD_URL https://archive.apache.org/dist/jmeter/binaries/apache-jmeter-${JMETER_VERSION}.tgz

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 18 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JAVA_HOME=/opt/java/openjdk

ENV JMETER_HOME /opt/apache-jmeter

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 21 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

#TMP ENV
ENV SCRIPTS_PATH /scripts

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 24 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV DEPENCENCIES_TMP_PATH /tmp/dependencies

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 25 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV DEPENCENCIES_PATH /jmeter/internal/dependencies

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 26 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/



#JMETER

ENV JMETER_ADDITIONAL_HOME /jmeter/additional

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 32 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_ADDITIONAL_LIB $JMETER_ADDITIONAL_HOME/lib

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 33 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_ADDITIONAL_EXT $JMETER_ADDITIONAL_LIB/ext

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 34 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV USER_PATH /jmeter/user

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 36 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PROJECT_PATH /jmeter/project

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 37 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV WORKSPACE_TARGET /jmeter/workspace

Check warning on line 38 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 38 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 38 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 38 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 38 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 38 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV OUTPUT_PATH /jmeter/out

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 40 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/


#CONFIG
ENV CONF_SKIP_PLUGINS_INSTALL false

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 44 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_SKIP_PRE_ACTION false

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_SKIP_POST_ACTION false

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 46 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_COPY_TO_WORKSPACE false

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 47 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

#EXECUTION
ENV CONF_EXEC_IS_SLAVE false

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_EXEC_WORKER_COUNT 1

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_EXEC_WORKER_NUMBER 1

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 52 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_EXEC_WAIT_BEFORE_TEST 0

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 53 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_EXEC_WAIT_AFTER_TEST 1

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 54 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_EXEC_TIMEOUT 2592000

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 55 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

#DATA
ENV CONF_CSV_SPLIT false

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 58 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_CSV_SPLIT_PATTERN **

Check warning on line 59 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 59 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 59 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 59 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 59 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 59 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_CSV_WITH_HEADER true

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 60 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_CSV_DIVIDED_TO_OUT true

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 61 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/


#JMETER
ENV JMETER_JMX ""

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 65 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_EXIT "false"

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 66 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_PROPERTIES_FILES "jmeter.properties"

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 67 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_PROPERTIES_OPTIONAL "false"

Check warning on line 68 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 68 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 68 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 68 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 68 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_JTL_FILE ""

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 69 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_LOG_FILE "jmeter.log"

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 70 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_REPORT_NAME ""

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 71 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_JVM_ARGS ""

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 72 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_JVM_EXTRA_ARGS ""

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 73 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_DEFAULT_ARGS " --nongui "

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 74 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_CHECK_ONLY "false"

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 75 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_PLUGINS_MANAGER_INSTALL_LIST ""

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 76 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JMETER_PLUGINS_MANAGER_INSTALL_FOR_JMX "false"

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 77 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

#JOLOKIA
ENV JOLOKIA_PATH /opt/jolokia

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 80 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JOLOKIA_CONFIG $JOLOKIA_PATH/jolokia.properties

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 81 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV JOLOKIA_LIB $JOLOKIA_PATH/lib

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 82 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV CONF_WITH_JOLOKIA false

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 83 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
#INPUT ENV


Expand All @@ -91,9 +91,9 @@

# Install extra packages
ARG TZ="Etc/GMT-0"
ENV TZ ${TZ}

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 21, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 94 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV PATH "${SCRIPTS_PATH}:${SCRIPTS_PATH}/internal:${SCRIPTS_PATH}/internal/build:${JAVA_HOME}/bin:${MAVEN_HOME}/bin:${JMETER_HOME}/bin:${PATH}"

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.4, jdk, 11, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jdk, 21, true)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.5, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 96 in 5.x/eclipse-temurin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build, Test and Publish (5.6, jre, 17, false)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apk update \
&& apk upgrade \
Expand Down