From 824e2c5286bf80dfcd6949236a40367400eeb049 Mon Sep 17 00:00:00 2001 From: kane8n Date: Mon, 27 May 2024 14:02:21 +0900 Subject: [PATCH] gatling version -> 3.10.5 openjdk -> 21-jdk-slim-bullseye --- gatling/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gatling/Dockerfile b/gatling/Dockerfile index 68391a1..dee31cf 100644 --- a/gatling/Dockerfile +++ b/gatling/Dockerfile @@ -3,14 +3,13 @@ # # Gatling is a highly capable load testing tool. -#FROM openjdk:21-jdk-slim-bullseye -FROM eclipse-temurin:21 +FROM openjdk:21-jdk-slim-bullseye # working directory for gatling WORKDIR /opt # gating version -ENV GATLING_VERSION 3.11.3 +ENV GATLING_VERSION 3.10.5 # create directory for gatling install RUN mkdir -p gatling @@ -19,7 +18,7 @@ RUN mkdir -p gatling RUN apt-get update && apt-get upgrade -y && apt-get install -y wget unzip && \ 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.zip && \ + https://repo1.maven.org/maven2/io/gatling/highcharts/gatling-charts-highcharts-bundle/$GATLING_VERSION/gatling-charts-highcharts-bundle-$GATLING_VERSION-bundle.zip && \ mkdir -p /tmp/archive && cd /tmp/archive && \ unzip /tmp/downloads/gatling-$GATLING_VERSION.zip && \ mv /tmp/archive/gatling-charts-highcharts-bundle-$GATLING_VERSION/* /opt/gatling/ && \