Incorporate spike5; working 🥳

This commit is contained in:
3wc
2021-12-06 14:41:41 +02:00
parent 325eb3f817
commit 98c4098bf2
24 changed files with 190 additions and 131 deletions

View File

@ -1,7 +1,13 @@
FROM php:8.1-apache
FROM wordpress:5.8.2-php8.0-fpm
# TODO: use renovate-bot to send pull requests on upstream image updates
COPY entrypoint-wordpress.sh /usr/local/bin/
COPY --from=composer:2.1 /usr/bin/composer /usr/bin/composer
# TODO: use renovate-bot to send pull requests on upstream image updates
COPY apache-docker.conf /etc/apache2/sites-enabled/
RUN apt-get update && apt-get install -y \
git \
unzip && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT /usr/local/bin/entrypoint-wordpress.sh
# Upstream Wordpress entrypoint, adapted for Composer use
COPY docker-entrypoint.sh /usr/local/bin/