ソースを参照

Use new upstream version 4.8.2

Johannes Zellner 7 年 前
コミット
f70715f2dd
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]
 * 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.
 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
 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 ln -s /app/data/htaccess /app/code/.htaccess
 ADD wp-config.php.template /app/code/wp-config.php.template