Created
September 9, 2017 12:08
-
-
Save vepo/bf0c29e6f85d302472852d361e3699c5 to your computer and use it in GitHub Desktop.
jmeter-base-dockerfile
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
FROM java:8 | |
RUN wget http://mirror.nbtelecom.com.br/apache//jmeter/binaries/apache-jmeter-3.2.tgz | |
RUN tar -xvzf apache-jmeter-3.2.tgz | |
RUN rm apache-jmeter-3.2.tgz | |
RUN mv apache-jmeter-3.2 /jmeter | |
ENV JMETER_HOME /jmeter | |
# Add Jmeter to the Path | |
ENV PATH $JMETER_HOME/bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment