Add docker files

This commit is contained in:
Akshay
2023-10-15 20:21:09 +05:30
parent e5a875856a
commit e95ebfd6a0
2 changed files with 33 additions and 0 deletions

11
mock-backend/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:20.6.1-bullseye-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 7091
CMD [ "npm", "run", "start"]