Update Dockerfile

This commit is contained in:
Kaveri Reddy 2024-12-10 23:52:38 +05:30 committed by GitHub
parent 2cc6c1025b
commit 0405d71f8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
RUN yarn install
EXPOSE 3000
CMD ["node","src/index.js"]