Migrating from wordpress:php8.2-apache to wordpress:php8.3-fpm-alpine and nginx:stable-alpine as base image for wordpress applications
I am trying to migrate my Docker image which uses library/wordpress:php8.2-apache as base image to library/wordpress:php8.3-fpm-alpine and nginx:stable-alpine as base images. Here is my Dockerfile # Stage 1: Build the WordPress application FROM library/wordpress:php8.3-fpm-alpine AS build # Install wp-cli RUN…