We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f424c commit 8f80f56Copy full SHA for 8f80f56
tests/src/test/java/de/codecentric/spa/server/tests/containers/Curl.java
@@ -13,7 +13,7 @@ public static GenericContainer container() {
13
.withFileFromClasspath("test-ca.pem", "test_pki/ca.pem")
14
.withDockerfileFromBuilder(dockerfileBuilder -> dockerfileBuilder
15
.from("alpine")
16
- .run("apk --no-cache add curl")
+ .run("apk --no-cache add curl ca-certificates")
17
.copy("test-ca.pem", "/usr/local/share/ca-certificates/")
18
.run("update-ca-certificates")
19
)
0 commit comments