Skip to content

Commit 06bd422

Browse files
author
Edwin Westerhoud
committed
Update compatibility with 5.8.
1 parent 5b8074b commit 06bd422

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

config/Dockerfile-wordpress-58

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM wordpress:5-php7.3
2+
3+
ENV WORDPRESS_VERSION 5.8
4+
ENV WORDPRESS_UPSTREAM_VERSION 5.8
5+
ENV WORDPRESS_SHA1 6476e69305ba557694424b04b9dea7352d988110
6+
7+
# upstream tarballs include ./wordpress/ so this gives us /usr/src/wordpress
8+
RUN curl -o wordpress.tar.gz -sSL https://wordpress.org/wordpress-${WORDPRESS_UPSTREAM_VERSION}.tar.gz \
9+
&& echo "$WORDPRESS_SHA1 *wordpress.tar.gz" | sha1sum -c - \
10+
&& tar -xzf wordpress.tar.gz -C /usr/src/ \
11+
&& rm wordpress.tar.gz \
12+
&& mkdir /usr/src/wordpress/wp-content/uploads \
13+
&& chown -R www-data:www-data /usr/src/wordpress
14+
15+
ENTRYPOINT ["docker-entrypoint.sh"]
16+
CMD ["apache2-foreground"]

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: TinyPNG
33
Donate link: https://tinypng.com/
44
Tags: compress images, compression, image size, page speed, performance
55
Requires at least: 3.4
6-
Tested up to: 5.7
6+
Tested up to: 5.8
77
Stable tag: 3.2.1
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html

0 commit comments

Comments
 (0)