Browse Source

fix silly path mess-up (#6305)

jason plumb 2 years ago
parent
commit
f6ba3cf9e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      benchmark-overhead/Dockerfile-petclinic-base

+ 1 - 1
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