# Node.js runtime FROM node:24 WORKDIR /var/www/html/ COPY package.* /var/www/html/ RUN npm install # Run the app CMD [ "npm", "run", "grunt" ]