We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae0ee47 commit fe7ecd9Copy full SHA for fe7ecd9
3 files changed
.github/workflows/docker.build.yml
@@ -29,7 +29,7 @@ jobs:
29
uses: docker/setup-buildx-action@v2.4.1
30
-
31
name: Cache Docker layers
32
- uses: actions/cache@v3.2.6
+ uses: actions/cache@v4
33
with:
34
path: /tmp/.buildx-cache
35
key: ${{ runner.os }}-buildx-${{ github.sha }}
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# quickstatements
2
3
+## March 2025
4
+- 1.4.0
5
+ - Install extra tls CA cert if it exists
6
+
7
## October 2024
8
- 1.3.7
9
- Update `magnustools` to correctly use https concept URI
docker/entrypoint.sh
@@ -1,3 +1,8 @@
#!/usr/bin/env bash
+if [ -r '/usr/share/ca-certificates/extra/ca.crt' ]; then
+ echo 'extra/ca.crt' >> /etc/ca-certificates.conf
+ update-ca-certificates
+fi
docker-php-entrypoint apache2-foreground
0 commit comments