dockerfile

This commit is contained in:
Ivan
2024-01-25 14:07:29 +03:00
parent 7f520581a4
commit 1bc2effd2d
5 changed files with 62 additions and 3 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
CMD ["node", "index.js"]