mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 16:32:33 +01:00
13 lines
199 B
Docker
13 lines
199 B
Docker
|
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"]
|