Update Dockerfile to run multiple Node.js scripts sequentially

This commit is contained in:
Knight 2024-12-28 10:32:27 -05:00
parent 7a17c8cc71
commit 80aa4ea4b2

View File

@ -6,4 +6,4 @@ RUN npm install
COPY . . COPY . .
CMD ["node", "fetchImages.js"] CMD ["sh", "-c", "node fetchImages.js && node generateSite.js"]