This commit is contained in:
HeySora 2026-03-13 04:24:05 +00:00 committed by GitHub
commit a6e3bd2d9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,6 +122,13 @@ RUN set -eux; \
apk del .build-dependencies; \
apk del .deps
# sqlite
RUN set -eux; \
apk add --no-cache sqlite-libs; \
apk add --no-cache --virtual .deps sqlite-dev; \
docker-php-ext-install pdo_sqlite; \
apk del .deps
# tidy
RUN set -eux; \
apk add --no-cache tidyhtml; \