Skip to content

Commit d6e26a6

Browse files
Merge pull request #32 from leojonathanoh/enhancement/add-ca-certificates-across-variants
Enhancement: Add `ca-certificates` across variants
2 parents c8d271e + e858ee1 commit d6e26a6

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

generate/templates/Dockerfile.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@"
22
FROM $( $VARIANT['_metadata']['distro'] ):$( $VARIANT['_metadata']['distro_version'] )
33
4-
RUN apk add --no-cache curl wget
4+
RUN apk add --no-cache ca-certificates curl wget
55
66
77
"@

variants/3.12-mysqlclient-openssl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.12
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache mysql-client
66

variants/3.12-mysqlclient/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.12
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache mysql-client
66

variants/3.12-openssl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.12
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache openssl
66

variants/3.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.12
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
# This is the only signal from the docker host that appears to stop crond
66
STOPSIGNAL SIGKILL

variants/3.15-mysqlclient-openssl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.15
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache mysql-client
66

variants/3.15-mysqlclient/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.15
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache mysql-client
66

variants/3.15-openssl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.15
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache openssl
66

variants/3.15/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.15
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
# This is the only signal from the docker host that appears to stop crond
66
STOPSIGNAL SIGKILL

variants/3.17-mysqlclient-openssl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.17
22

3-
RUN apk add --no-cache curl wget
3+
RUN apk add --no-cache ca-certificates curl wget
44

55
RUN apk add --no-cache mysql-client
66

0 commit comments

Comments
 (0)