Add dockerfile, small fixes

This commit is contained in:
2024-12-24 18:38:50 +05:30
parent ca8659fdef
commit 88046d6810
5 changed files with 14 additions and 5 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:22-alpine
WORKDIR /home/app
COPY package.json .
RUN npm install --force
COPY ./dist ./dist
EXPOSE 8000
CMD ["node", "./dist/index.js"]