Skip to content

Commit e9e1452

Browse files
committed
Remove certificates from base image
1 parent e9f04ec commit e9e1452

File tree

8 files changed

+2
-190
lines changed

8 files changed

+2
-190
lines changed

docker/ssp-debug-sp/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ RUN git reset --hard adf1eb8
1616
COPY conf/config.php /app/config/config.php
1717
COPY conf/authsources.php /app/config/authsources.php
1818
COPY conf/accountgen.inc /app/config/accountgen.inc
19-
COPY certificates/* /app/cert/
2019
COPY conf/saml20-idp-hosted.php /app/metadata/saml20-idp-hosted.php
2120
COPY conf/saml20-idp-remote.php /app/metadata/saml20-idp-remote.php
2221
COPY conf/saml20-sp-remote.php /app/metadata/saml20-sp-remote.php

docker/ssp-debug-sp/certificates/idp.crt

Lines changed: 0 additions & 24 deletions
This file was deleted.

docker/ssp-debug-sp/certificates/idp.key

Lines changed: 0 additions & 39 deletions
This file was deleted.

docker/ssp-debug-sp/certificates/sp.crt

Lines changed: 0 additions & 23 deletions
This file was deleted.

docker/ssp-debug-sp/certificates/sp.key

Lines changed: 0 additions & 39 deletions
This file was deleted.

docker/ssp-debug-sp/certificates/ssp.crt

Lines changed: 0 additions & 23 deletions
This file was deleted.

docker/ssp-debug-sp/certificates/ssp.key

Lines changed: 0 additions & 39 deletions
This file was deleted.

docker/ssp-debug-sp/conf/saml20-idp-remote.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
'encryption' => false,
7070
'signing' => true,
7171
'type' => 'X509Certificate',
72-
'X509Certificate' => '{{ gateway_saml_idp_publickey | depem }}',
72+
'X509Certificate' => depem(file_get_contents('/app/cert/idp.crt')),
7373
),
7474
),
7575
);
@@ -109,7 +109,7 @@
109109
'encryption' => false,
110110
'signing' => true,
111111
'type' => 'X509Certificate',
112-
'X509Certificate' => '{{ gateway_saml_idp_publickey | depem }}',
112+
'X509Certificate' => depem(file_get_contents('/app/cert/idp.crt')),
113113
),
114114
),
115115
);

0 commit comments

Comments
 (0)