Error with `copyfiles` command When Building Docker Image: failed with exit code 127
Description: I’m facing an issue while building a Docker image for my frontend application based on the Payload CMS ecommerce template. Dockerfile: I made modifications to the Dockerfile after repeatedly encountering a connect ECONNREFUSED error with the original one: FROM node:18.8-alpine as base WORKDIR /home/node/app COPY package*.json ./ FROM base as builder COPY . . […]