Create Dockerfile

This commit is contained in:
Anjaneyulu8106 2024-12-11 11:19:24 +05:30 committed by GitHub
parent f2d13b8483
commit ace65255a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:lts-alphine
WORKDIR /app
COPY . .
RUN yarn install --production
EXPOSE 7000
CMD['node','app.js']