Create Dockerfile

This commit is contained in:
Suraj kumar 2024-12-08 18:45:54 +05:30 committed by GitHub
parent f2d13b8483
commit 97181fdaa5
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
CMD ["node", "src/index.js"]
EXPOSE 3000