Add tool/util [patch-util] - useful only for devs/contributors

This commit is contained in:
xZero707
2021-03-19 19:10:54 +01:00
parent a61b1c90dd
commit 3c7ed3fff5
5 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
FROM wordpress:cli-php7.4 AS wordpress-builder
USER root
COPY ["rootfs", "/"]
WORKDIR "/wp"
ENV UID 1000
ENV GID 1000
ENV WP_LOCALE "en_US"
ENV WP_VERSION "5.7.0"
ENTRYPOINT ["/wp/entrypoint.sh"]