Files

11 lines
154 B
Docker

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