浏览代码

Use new upstream version 4.8.2

Johannes Zellner 7 年之前
父节点
当前提交
ffc4a0ee0f
共有 3 个文件被更改,包括 3 次插入2 次删除
  1. 1 0
      CHANGELOG
  2. 1 1
      DESCRIPTION.md
  3. 1 1
      Dockerfile

+ 1 - 0
CHANGELOG

@@ -113,4 +113,5 @@
 
 
 [1.0.1]
 [1.0.1]
 * Do not enforce a php memory limit, limits are already set per app
 * Do not enforce a php memory limit, limits are already set per app
+* Update wordpress to 4.8.2
 
 

+ 1 - 1
DESCRIPTION.md

@@ -1,4 +1,4 @@
-This app packages WordPress <upstream>4.8.1</upstream>.
+This app packages WordPress <upstream>4.8.2</upstream>.
 
 
 WordPress is web software you can use to create a beautiful website or blog.
 WordPress is web software you can use to create a beautiful website or blog.
 We like to say that WordPress is both free and priceless at the same time.
 We like to say that WordPress is both free and priceless at the same time.

+ 1 - 1
Dockerfile

@@ -8,7 +8,7 @@ RUN apt-get update && \
 
 
 RUN mkdir -p /app/code
 RUN mkdir -p /app/code
 WORKDIR /app/code
 WORKDIR /app/code
-RUN curl -L http://wordpress.org/wordpress-4.8.1.tar.gz | tar -xz --strip-components 1 -f -
+RUN curl -L http://wordpress.org/wordpress-4.8.2.tar.gz | tar -xz --strip-components 1 -f -
 RUN mv /app/code/wp-content /app/code/wp-content-vanilla && ln -s /app/data/wp-content /app/code/wp-content
 RUN mv /app/code/wp-content /app/code/wp-content-vanilla && ln -s /app/data/wp-content /app/code/wp-content
 RUN ln -s /app/data/htaccess /app/code/.htaccess
 RUN ln -s /app/data/htaccess /app/code/.htaccess
 ADD wp-config.php.template /app/code/wp-config.php.template
 ADD wp-config.php.template /app/code/wp-config.php.template