mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 16:32:33 +01:00
14 lines
200 B
Docker
14 lines
200 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.8.0"
|
|
|
|
ENTRYPOINT ["/wp/entrypoint.sh"]
|