mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 13:03:28 +01:00
15 lines
231 B
Docker
15 lines
231 B
Docker
FROM wordpress:cli-php8.1 AS wordpress-builder
|
|
|
|
USER root
|
|
|
|
COPY ["rootfs", "/"]
|
|
WORKDIR "/wp"
|
|
|
|
ENV UID 1000
|
|
ENV GID 1000
|
|
ENV WP_LOCALE="en_US"
|
|
ARG WP_VERSION="6.0.2"
|
|
ENV WP_VERSION="${WP_VERSION}"
|
|
|
|
ENTRYPOINT ["/wp/entrypoint.sh"]
|