File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ # This is modified based on the original file:
2
+ # https://github.com/denvazh/gatling/tree/master/3.2.1
3
+ #
1
4
# Gatling is a highly capable load testing tool.
2
5
3
- FROM openjdk:17-jdk-slim
6
+ FROM openjdk:17-jdk-slim-bullseye
4
7
5
8
# working directory for gatling
6
9
WORKDIR /opt
@@ -12,7 +15,7 @@ ENV GATLING_VERSION 3.9.5
12
15
RUN mkdir -p gatling
13
16
14
17
# install gatling
15
- RUN apt-get update && apt install -y wget bash libc6-dev unzip && \
18
+ RUN apt-get update && apt-get upgrade -y && apt-get install -y wget libc6-dev unzip && \
16
19
mkdir -p /tmp/downloads && \
17
20
wget -q -O /tmp/downloads/gatling-$GATLING_VERSION.zip \
18
21
https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts-bundle/$GATLING_VERSION/gatling-charts-highcharts-bundle-$GATLING_VERSION-bundle.zip && \
You can’t perform that action at this time.
0 commit comments