Skip to content

Commit

Permalink
WordPress updated to version 4.9, wp-cli updated to version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiHofstetter committed Nov 16, 2017
1 parent 5ac47e0 commit 35d510f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ RUN apt-get update && \
apt-get -y install apache2 libapache2-mod-php5 php5 php5-mysql mysql-server curl

# Download WordPress
RUN wp_version=4.8.3 && \
RUN wp_version=4.9 && \
curl -L "https://wordpress.org/wordpress-${wp_version}.tar.gz" > /wordpress-${wp_version}.tar.gz && \
rm /var/www/html/index.html && \
tar -xzf /wordpress-${wp_version}.tar.gz -C /var/www/html --strip-components=1 && \
rm /wordpress-${wp_version}.tar.gz

# Download WordPress CLI
RUN cli_version=1.4.0 && \
RUN cli_version=1.4.1 && \
curl -L "https://github.com/wp-cli/wp-cli/releases/download/v${cli_version}/wp-cli-${cli_version}.phar" > /usr/bin/wp && \
chmod +x /usr/bin/wp

Expand Down

0 comments on commit 35d510f

Please sign in to comment.