File tree Expand file tree Collapse file tree 5 files changed +20
-1
lines changed
Expand file tree Collapse file tree 5 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 2929 uses : docker/setup-buildx-action@v1.6.0
3030 -
3131 name : Cache Docker layers
32- uses : actions/cache@v3.0.8
32+ uses : actions/cache@v4
3333 with :
3434 path : /tmp/.buildx-cache
3535 key : ${{ runner.os }}-buildx-${{ github.sha }}
Original file line number Diff line number Diff line change 11# cradle
22
3+ ## March 2025
4+ - 3.0 - adjust entrypoint
5+ - Install extra tls CA cert if it exists
6+
37## March 2021
48
59- 2.0 - PHP 7.3, Apache & API config change
Original file line number Diff line number Diff line change @@ -17,3 +17,9 @@ RUN sed -ri -e "s!/var/www/!${APACHE_DOCUMENT_ROOT}!g" /etc/apache2/apache2.conf
1717COPY --from=composer --chown=www-data:www-data /installing /var/www/html/cradle
1818
1919ADD ./docker/config.js /var/www/html/cradle/public_html/config.js
20+
21+ COPY docker/entrypoint.sh /entrypoint.sh
22+ COPY docker/php.ini /usr/local/etc/php/conf.d/php.ini
23+
24+ ENTRYPOINT ["/bin/bash" ]
25+ CMD ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ if [ -r ' /usr/share/ca-certificates/extra/ca.crt' ]; then
4+ echo ' extra/ca.crt' >> /etc/ca-certificates.conf
5+ update-ca-certificates
6+ fi
7+
8+ docker-php-entrypoint apache2-foreground
Original file line number Diff line number Diff line change 1+ date.timezone = " UTC"
You can’t perform that action at this time.
0 commit comments