Skip to content

Commit

Permalink
fix(integration-tests): Fix the wrong maven entrypoint definition
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelsJP committed Nov 14, 2024
1 parent e225b82 commit 8b40628
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public static GenericContainer<?> initContainer(ContainerTestImage containerTest
.withFileFromPath("ors-config.yml", rootPath.resolve("ors-config.yml"))
.withFileFromPath(".dockerfile", rootPath.resolve("ors-test-scenarios/src/test/resources/Dockerfile.dockerignore"))
// Special case for maven container entrypoint. This is not needed for the other containers.
.withFileFromPath("./ors-test-scenarios/src/test/resources/maven-entrypoint.sh", Path.of("./src/test/resources/maven-entrypoint.sh"))
.withFileFromPath("maven-entrypoint.sh", rootPath.resolve("ors-test-scenarios/src/test/resources/maven-entrypoint.sh"))
.withTarget(containerTestImage.getName())
.withBuildImageCmdModifier(cmd -> cmd.withCacheFrom(cacheChain))
)
Expand Down

0 comments on commit 8b40628

Please sign in to comment.