FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm install RUN mkdir -p public/uploads/products COPY . . EXPOSE 4000 CMD ["npm", "start"]