Skip to content

Commit a12273d

Browse files
authored
Merge pull request #69 from mikespub-org/tokenizer
Add missing php-tokenizer package
2 parents 9e20f29 + 0afa131 commit a12273d

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ LABEL maintainer="chbmb"
1212
RUN \
1313
echo "**** install runtime packages ****" && \
1414
apk add --no-cache --upgrade \
15-
# libxml2 \
1615
icu-data-full \
1716
php84-dom \
1817
php84-gd \
1918
php84-intl \
2019
php84-pdo_sqlite \
21-
php84-sqlite3 && \
20+
php84-sqlite3 \
21+
php84-tokenizer && \
2222
echo "**** configure php-fpm to pass env vars ****" && \
2323
sed -E -i 's/^;?clear_env ?=.*$/clear_env = no/g' /etc/php84/php-fpm.d/www.conf && \
2424
if ! grep -qxF 'clear_env = no' /etc/php84/php-fpm.d/www.conf; then echo 'clear_env = no' >> /etc/php84/php-fpm.d/www.conf; fi && \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ LABEL maintainer="chbmb"
1212
RUN \
1313
echo "**** install runtime packages ****" && \
1414
apk add --no-cache --upgrade \
15-
# libxml2 \
1615
icu-data-full \
1716
php84-dom \
1817
php84-gd \
1918
php84-intl \
2019
php84-pdo_sqlite \
21-
php84-sqlite3 && \
20+
php84-sqlite3 \
21+
php84-tokenizer && \
2222
echo "**** configure php-fpm to pass env vars ****" && \
2323
sed -E -i 's/^;?clear_env ?=.*$/clear_env = no/g' /etc/php84/php-fpm.d/www.conf && \
2424
if ! grep -qxF 'clear_env = no' /etc/php84/php-fpm.d/www.conf; then echo 'clear_env = no' >> /etc/php84/php-fpm.d/www.conf; fi && \

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ init_diagram: |
114114
"cops:latest" <- Base Images
115115
# changelog
116116
changelogs:
117+
- {date: "08.02.26:", desc: "Adding missing php-tokenizer package."}
117118
- {date: "10.10.25:", desc: "Adding missing icu-data-full package."}
118119
- {date: "10.07.25:", desc: "Rebase to Alpine 3.22."}
119120
- {date: "14.05.25:", desc: "Existing users should verify: site-confs/default.conf and config/local.php - Clean-up default site conf and local.php."}

0 commit comments

Comments
 (0)