-
Notifications
You must be signed in to change notification settings - Fork 20
Upgrade gatling version to 3.9.5 #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,24 +1,18 @@ | ||||||
# This is modified based on the original file: | ||||||
# https://github.com/denvazh/gatling/tree/master/3.2.1 | ||||||
# | ||||||
# Gatling is a highly capable load testing tool. | ||||||
# | ||||||
# Documentation: https://gatling.io/docs/3.2/ | ||||||
# Cheat sheet: https://gatling.io/docs/3.2/cheat-sheet/ | ||||||
|
||||||
FROM openjdk:8-jdk-alpine | ||||||
FROM openjdk:17-jdk-slim | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe it's a good practice to include the Debian version name for clarity. ![]() https://hub.docker.com/_/openjdk/tags?page=1&name=17-jdk-slim |
||||||
|
||||||
# working directory for gatling | ||||||
WORKDIR /opt | ||||||
|
||||||
# gating version | ||||||
ENV GATLING_VERSION 3.2.1 | ||||||
ENV GATLING_VERSION 3.9.5 | ||||||
|
||||||
# create directory for gatling install | ||||||
RUN mkdir -p gatling | ||||||
|
||||||
# install gatling | ||||||
RUN apk add --update wget bash libc6-compat && \ | ||||||
RUN apt-get update && apt install -y wget bash libc6-dev unzip && \ | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think |
||||||
mkdir -p /tmp/downloads && \ | ||||||
wget -q -O /tmp/downloads/gatling-$GATLING_VERSION.zip \ | ||||||
https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts-bundle/$GATLING_VERSION/gatling-charts-highcharts-bundle-$GATLING_VERSION-bundle.zip && \ | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's ok to leave the comment in this section.