adding local changes

This commit is contained in:
2026-04-25 22:52:15 -07:00
parent d930a17d0a
commit aeb67e5d5d
4 changed files with 555 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:24-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN mkdir images # Create the 'images' folder
CMD ["node", "createCollectionsFromCSVs.js"]