Initial init

This commit is contained in:
2024-12-28 10:12:25 -05:00
commit d4d6fab753
7 changed files with 497 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
CMD ["node", "fetchImages.js"]