FROM node:24-alpine WORKDIR /app COPY . . RUN npm install RUN mkdir images # Create the 'images' folder CMD ["node", "createCollectionsFromCSVs.js"]