FROM node:22.12.0 COPY package*.json ./ RUN npm install COPY . . EXPOSE 3000 VOLUME /app/base_files CMD ["npm", "run", "serve"]