Pārlūkot izejas kodu

Update wordpress to 4.4.1

Johannes Zellner 9 gadi atpakaļ
vecāks
revīzija
a837bd2292
2 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 1 1
      CloudronManifest.json
  2. 2 2
      Dockerfile

+ 1 - 1
CloudronManifest.json

@@ -4,7 +4,7 @@
   "author": "WordPress developers",
   "description": "file://DESCRIPTION.md",
   "tagline": "Transform your site into almost anything you can imagine",
-  "version": "0.4.0",
+  "version": "0.5.0",
   "healthCheckPath": "/",
   "httpPort": 8000,
   "manifestVersion": 1,

+ 2 - 2
Dockerfile

@@ -3,7 +3,7 @@ MAINTAINER Girish Ramakrishnan <girish@cloudron.io>
 
 RUN mkdir -p /app/code
 WORKDIR /app/code
-RUN curl -L http://wordpress.org/wordpress-4.3.1.tar.gz | tar -xz --strip-components 1 -f -
+RUN curl -L http://wordpress.org/wordpress-4.4.1.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
 ADD wp-config.php.template /app/code/wp-config.php.template
 ADD start.sh /app/code/start.sh
@@ -11,7 +11,7 @@ ADD start.sh /app/code/start.sh
 RUN mkdir -p /run/wordpress/sessions && \
     ln -sf /run/wordpress/wp-config.php /app/code/wp-config.php
 
-RUN curl -o /app/code/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar 
+RUN curl -o /app/code/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
 RUN chmod +x /app/code/wp
 # https://github.com/wp-cli/wp-cli/issues/1164
 RUN echo "<?php function wp_new_blog_notification() {} ?>" > /run/wordpress/disable-new-blog-notification.php