Giter Site home page Giter Site logo

Comments (2)

spriya757 avatar spriya757 commented on July 17, 2024

When using this image in our builds, we noticed that the vendor folder created by composer command in /var/www/html is being removed in the next layer.
Noticed the image has a VOLUME instruction - https://github.com/docker-library/wordpress/blob/master/latest/php8.2/fpm/Dockerfile#L142. Removing this and rebuilding the base image fixed the problem.

from wordpress.

maiorano84 avatar maiorano84 commented on July 17, 2024

You're using Bedrock I'm assuming?

You should use Multistage builds and copy your resulting files over to their respective locations. Here's a loose example of how we're doing it. There are better ways, but I slapped this together for illustrative purposes:

ARG PHP_VERSION=8.1
ARG NODE_VERSION=18

# Step 1 -- Composer
FROM php:${PHP_VERSION}-cli-alpine AS builder

WORKDIR /app

COPY --from=composer:2.3.3 /usr/bin/composer /usr/local/bin
COPY composer.json composer.lock ./

RUN composer install --no-dev

# Step 2 -- Theme
FROM node:${NODE_VERSION}-slim AS theme

WORKDIR /theme

COPY web/app/themes/custom-theme ./

RUN npm install && npm run build

# Step 3 -- PHP FPM
FROM wordpress:php${PHP_VERSION}-fpm-alpine AS final

COPY . .
COPY --from=builder --chown=www-data:www-data /app ./
COPY --from=theme --chown=www-data:www-data /theme/dist /var/www/html/web/app/themes/custom-theme/dist

ENTRYPOINT ["php-fpm"]

from wordpress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.