Skip to content

Commit 3b61132

Browse files
authored
Merge pull request #41 from thelamer/master
#33 update x86 and aarch64 to use old version of tidyhtml
2 parents 6a504eb + 29b3314 commit 3b61132

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ RUN \
3535
tar \
3636
ttf-freefont \
3737
wkhtmltopdf && \
38+
echo "**** tidy bug fix ****" && \
39+
curl -s \
40+
http://dl-cdn.alpinelinux.org/alpine/v3.7/community/x86_64/tidyhtml-libs-5.4.0-r0.apk | \
41+
tar xfz - -C / && \
42+
rm -f /usr/lib/libtidy.so.5.6.0 && \
3843
echo "**** configure php-fpm ****" && \
3944
sed -i 's/;clear_env = no/clear_env = no/g' /etc/php7/php-fpm.d/www.conf && \
4045
echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php7/php-fpm.conf && \

Dockerfile.aarch64

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ RUN \
3535
tar \
3636
ttf-freefont \
3737
wkhtmltopdf && \
38+
echo "**** tidy bug fix ****" && \
39+
curl -s \
40+
http://dl-cdn.alpinelinux.org/alpine/v3.7/community/aarch64/tidyhtml-libs-5.4.0-r0.apk | \
41+
tar xfz - -C / && \
42+
rm -f /usr/lib/libtidy.so.5.6.0 && \
3843
echo "**** configure php-fpm ****" && \
3944
sed -i 's/;clear_env = no/clear_env = no/g' /etc/php7/php-fpm.d/www.conf && \
4045
echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php7/php-fpm.conf && \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
230230

231231
## Versions
232232

233+
* **26.07.19:** - Use old version of tidyhtml pending upstream fixes.
233234
* **28.06.19:** - Rebasing to alpine 3.10.
234235
* **14.06.19:** - Add wkhtmltopdf to image for PDF rendering.
235236
* **20.04.19:** - Rebase to Alpine 3.9, add MySQL init logic.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ app_setup_block: |
100100
101101
# changelog
102102
changelogs:
103+
- { date: "26.07.19:", desc: "Use old version of tidyhtml pending upstream fixes." }
103104
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
104105
- { date: "14.06.19:", desc: "Add wkhtmltopdf to image for PDF rendering." }
105106
- { date: "20.04.19:", desc: "Rebase to Alpine 3.9, add MySQL init logic." }

0 commit comments

Comments
 (0)