Skip to content

Commit

Permalink
fix: Fix tests and automatic image update by adding missing dependenc…
Browse files Browse the repository at this point in the history
…y in new alpine images
  • Loading branch information
PSanetra committed Dec 27, 2024
1 parent a3f424c commit bff808d
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 bff808d

Please sign in to comment.