wordpress/Dockerfile.dev

48 lines
1.3 KiB
Docker
Raw Permalink Normal View History

ARG WP_VERSION=6.5.3
2024-05-22 01:48:28 +02:00
FROM ghcr.io/n0rthernl1ghts/wordpress:${WP_VERSION} AS composer-build
COPY --from=composer:2.7 ["/usr/bin/composer", "/usr/local/bin/composer"]
RUN set -eux \
&& apk add --update --no-cache git unzip \
&& export COMPOSER_ALLOW_SUPERUSER=1 \
&& export COMPOSER_HOME="/tmp/composer" \
&& composer global require --no-interaction --ignore-platform-reqs \
php-parallel-lint/php-console-highlighter \
php-parallel-lint/php-parallel-lint \
squizlabs/php_codesniffer
FROM scratch AS rootfs
2024-05-20 22:55:08 +02:00
# Install shellcheck
COPY --from=koalaman/shellcheck:stable ["/bin/shellcheck", "/usr/local/bin/shellcheck"]
# Install shfmt
COPY --from=mvdan/shfmt:latest ["/bin/shfmt", "/usr/local/bin/shfmt"]
# Install hadolint
COPY --from=hadolint/hadolint:latest ["/bin/hadolint", "/usr/local/bin/hadolint"]
2024-05-22 01:48:28 +02:00
# Install composer
COPY --from=composer-build ["/usr/local/bin/composer", "/usr/local/bin/"]
COPY --from=composer-build ["/tmp/composer/", "/root/.composer/"]
ARG WP_VERSION
FROM ghcr.io/n0rthernl1ghts/wordpress:${WP_VERSION}
ENV PATH="${PATH}:/root/.composer/vendor/bin"
RUN set -eux \
2024-05-22 01:11:47 +02:00
&& apk add --update --no-cache curl exa file fish git less nano openssh-client rsync tree unzip wget
COPY --from=rootfs ["/", "/"]
ENV COMPOSER_ALLOW_SUPERUSER=1
WORKDIR "/workspace"
ENTRYPOINT ["/usr/bin/fish"]