docker deployment

This commit is contained in:
2024-10-28 19:35:35 +03:00
parent 0e9a7f0856
commit f2945fc92d
5 changed files with 32 additions and 3 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-bullseye
COPY . .
RUN npm i
EXPOSE 3000
ENTRYPOINT ["node", "./src/index.js"]