diff --git a/Dockerfile b/Dockerfile index 310e1de..fdbfb5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3.15.0 as jmeter-base LABEL maintainer="klehmann@aservo.com" -ARG JMETER_VERSION="5.4.2" +ARG JMETER_VERSION="5.4.3" ENV JMETER_HOME /opt/apache-jmeter-${JMETER_VERSION} ENV JMETER_BIN ${JMETER_HOME}/bin ENV JMETER_PLUGINS_FOLDER ${JMETER_HOME}/lib/ext/ diff --git a/entrypoint.sh b/entrypoint.sh index 8ac2032..bcbd878 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,7 @@ # Inspired from https://github.com/hhcordero/docker-jmeter-client # Basically runs jmeter, assuming the PATH is set to point to JMeter bin-dir (see Dockerfile) # -# This script expects the standdard JMeter command parameters. +# This script expects the standard JMeter command parameters. # set -e freeMem=`awk '/MemFree/ { print int($2/1024) }' /proc/meminfo`