Skip to content

Commit

Permalink
test: Fix tests by adding missing dependency in new alpine images
Browse files Browse the repository at this point in the history
  • Loading branch information
PSanetra committed Dec 27, 2024
1 parent a3f424c commit 8f80f56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static GenericContainer container() {
.withFileFromClasspath("test-ca.pem", "test_pki/ca.pem")
.withDockerfileFromBuilder(dockerfileBuilder -> dockerfileBuilder
.from("alpine")
.run("apk --no-cache add curl")
.run("apk --no-cache add curl ca-certificates")
.copy("test-ca.pem", "/usr/local/share/ca-certificates/")
.run("update-ca-certificates")
)
Expand Down

0 comments on commit 8f80f56

Please sign in to comment.