Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile.php8.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ARG WP_VERSION

RUN apk add -u --no-cache \
composer \
curl \
git \
imagemagick \
mysql \
Expand All @@ -26,12 +27,12 @@ RUN apk add --no-cache php8-pear php8-dev gcc musl-dev make \
# Create php symlink to php8
RUN ln -sf /usr/bin/php8 /usr/bin/php

RUN wget -nv -O /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
RUN curl -fsSL -o /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
&& mkdir /wordpress \
&& tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C /wordpress \
&& rm /tmp/wordpress.tar.gz

RUN wget -nv -O /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
RUN curl -fsSL -o /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
&& mkdir /wp-phpunit \
&& tar --strip-components=1 -zxmf /tmp/wp-phpunit.tar.gz -C /wp-phpunit \
&& rm /tmp/wp-phpunit.tar.gz
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.php8.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ARG WP_VERSION

RUN apk add -u --no-cache \
composer \
curl \
git \
imagemagick \
mysql \
Expand All @@ -26,12 +27,12 @@ RUN apk add --no-cache php81-pear php81-dev gcc musl-dev make \
# Create php symlink to php81
RUN ln -sf /usr/bin/php81 /usr/bin/php

RUN wget -nv -O /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
RUN curl -fsSL -o /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
&& mkdir /wordpress \
&& tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C /wordpress \
&& rm /tmp/wordpress.tar.gz

RUN wget -nv -O /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
RUN curl -fsSL -o /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
&& mkdir /wp-phpunit \
&& tar --strip-components=1 -zxmf /tmp/wp-phpunit.tar.gz -C /wp-phpunit \
&& rm /tmp/wp-phpunit.tar.gz
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.php8.2
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ARG WP_VERSION

RUN apk add -u --no-cache \
composer \
curl \
git \
imagemagick \
mysql \
Expand All @@ -26,12 +27,12 @@ RUN apk add --no-cache php82-pear php82-dev gcc musl-dev make \
# Create php symlink to php82
RUN ln -sf /usr/bin/php82 /usr/bin/php

RUN wget -nv -O /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
RUN curl -fsSL -o /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
&& mkdir /wordpress \
&& tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C /wordpress \
&& rm /tmp/wordpress.tar.gz

RUN wget -nv -O /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
RUN curl -fsSL -o /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
&& mkdir /wp-phpunit \
&& tar --strip-components=1 -zxmf /tmp/wp-phpunit.tar.gz -C /wp-phpunit \
&& rm /tmp/wp-phpunit.tar.gz
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile.php8.3
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ARG WP_VERSION

RUN apk add -u --no-cache \
composer \
curl \
git \
imagemagick \
mysql \
Expand All @@ -26,12 +27,12 @@ RUN apk add --no-cache php83-pear php83-dev gcc musl-dev make \
# Create php symlink to php83
RUN ln -sf /usr/bin/php83 /usr/bin/php

RUN wget -nv -O /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
RUN curl -fsSL -o /tmp/wordpress.tar.gz https://wordpress.org/wordpress-${WP_VERSION}.tar.gz \
&& mkdir /wordpress \
&& tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C /wordpress \
&& rm /tmp/wordpress.tar.gz

RUN wget -nv -O /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
RUN curl -fsSL -o /tmp/wp-phpunit.tar.gz https://github.com/wp-phpunit/wp-phpunit/archive/${WP_VERSION}.0.tar.gz \
&& mkdir /wp-phpunit \
&& tar --strip-components=1 -zxmf /tmp/wp-phpunit.tar.gz -C /wp-phpunit \
&& rm /tmp/wp-phpunit.tar.gz
Expand Down
Loading