Create Dockerfile

This commit is contained in:
Kaveri Reddy 2024-12-10 23:45:24 +05:30 committed by GitHub
parent f2d13b8483
commit a132946a11
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:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
EXPOSE 3000
CMD ["node","src/index.js"]