fix: install npm Dockerfile

This commit is contained in:
Norbert Maciaszek
2025-11-27 23:03:31 +01:00
parent 11f120ce2f
commit 5fe751df84

View File

@@ -2,6 +2,10 @@ FROM node:22-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY . .
CMD ["node", "index.js"]