feat: Introduce Dockerization and shift product data sourcing from external API to local files.

This commit is contained in:
Norbert Maciaszek
2025-11-27 23:02:01 +01:00
parent f09b58fb63
commit 11f120ce2f
2 changed files with 10 additions and 6 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY . .
CMD ["node", "index.js"]