diff --git a/benchmark-overhead/Dockerfile-petclinic-base b/benchmark-overhead/Dockerfile-petclinic-base index 5e90ebfdbc..51cab49768 100644 --- a/benchmark-overhead/Dockerfile-petclinic-base +++ b/benchmark-overhead/Dockerfile-petclinic-base @@ -7,9 +7,9 @@ FROM eclipse-temurin:11 as app-build RUN apt update && apt install -y git WORKDIR /app RUN git clone http://github.com/spring-petclinic/spring-petclinic-rest.git +WORKDIR /app/spring-petclinic-rest # We have to pin the version because upstream petclinic has breaking api changes after this commit RUN git checkout 8aa4d49 -WORKDIR /app/spring-petclinic-rest RUN ./mvnw package -Dmaven.test.skip=true RUN cp target/spring-petclinic-rest*.jar /app/spring-petclinic-rest.jar