Sfoglia il codice sorgente

Update wp to 4.7.5

Girish Ramakrishnan 8 anni fa
parent
commit
894379fe83
3 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. 1 0
      CHANGELOG
  2. 1 1
      DESCRIPTION.md
  3. 1 1
      Dockerfile

+ 1 - 0
CHANGELOG

@@ -96,4 +96,5 @@
 
 [0.8.0]
 * Update authLdap to 1.5.1
+* Update wordpress to 4.7.5
 

+ 1 - 1
DESCRIPTION.md

@@ -1,4 +1,4 @@
-This app packages WordPress 4.7.4.
+This app packages WordPress 4.7.5.
 
 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.7.4.tar.gz | tar -xz --strip-components 1 -f -
+RUN curl -L http://wordpress.org/wordpress-4.7.5.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