-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patched JMeter to v5.5 and included webdriver plugin and packages git…
…+openssh
- Loading branch information
lcm_bot_loadtest
committed
Aug 5, 2022
1 parent
63c245f
commit e234301
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ FROM alpine:3.15.0 as jmeter-base | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
ARG JMETER_VERSION="5.4.3" | ||
ARG JMETER_VERSION="5.5" | ||
ENV JMETER_HOME /opt/apache-jmeter-${JMETER_VERSION} | ||
ENV JMETER_BIN ${JMETER_HOME}/bin | ||
ENV JMETER_PLUGINS_FOLDER ${JMETER_HOME}/lib/ext/ | ||
|
@@ -19,7 +19,7 @@ RUN apk update \ | |
&& apk upgrade \ | ||
&& apk add ca-certificates \ | ||
&& update-ca-certificates \ | ||
&& apk add --update openjdk8-jre tzdata curl unzip bash \ | ||
&& apk add --update openjdk8-jre tzdata curl unzip bash git openssh \ | ||
&& apk add --no-cache nss \ | ||
&& rm -rf /var/cache/apk/* \ | ||
&& mkdir -p /tmp/dependencies \ | ||
|
@@ -57,7 +57,7 @@ RUN cd /tmp/ \ | |
&& curl --location --silent --show-error --output ${JMETER_PLUGINS_FOLDER}/jmeter-plugins-manager-${JMETER_PLUGINS_MANAGER_VERSION}.jar http://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-manager/${JMETER_PLUGINS_MANAGER_VERSION}/jmeter-plugins-manager-${JMETER_PLUGINS_MANAGER_VERSION}.jar \ | ||
&& curl --location --silent --show-error --output ${JMETER_HOME}/lib/cmdrunner-${CMDRUNNER_VERSION}.jar http://search.maven.org/remotecontent?filepath=kg/apc/cmdrunner/${CMDRUNNER_VERSION}/cmdrunner-${CMDRUNNER_VERSION}.jar \ | ||
&& java -cp ${JMETER_HOME}/lib/ext/jmeter-plugins-manager-${JMETER_PLUGINS_MANAGER_VERSION}.jar org.jmeterplugins.repository.PluginManagerCMDInstaller \ | ||
&& PluginsManagerCMD.sh install jpgc-graphs-basic=2.0,jpgc-prmctl=0.4,jpgc-dummy=0.4,jpgc-functions=2.1 \ | ||
&& PluginsManagerCMD.sh install jpgc-graphs-basic=2.0,jpgc-prmctl=0.4,jpgc-dummy=0.4,jpgc-functions=2.1,jpgc-webdriver=3.3 \ | ||
&& jmeter --version \ | ||
&& PluginsManagerCMD.sh status \ | ||
&& chmod +x ${JMETER_HOME}/bin/*.sh \ | ||
|