Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: docker/setup-buildx-action@v2.4.1
-
name: Cache Docker layers
uses: actions/cache@v3.2.6
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# quickstatements

## March 2025
- 1.4.0
- Install extra tls CA cert if it exists

## October 2024
- 1.3.7
- Update `magnustools` to correctly use https concept URI
Expand Down
5 changes: 5 additions & 0 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -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