Merge e8da7a4cff546c6b9ddf8a3202cb4e3ac241ba6c into f2d13b8483f33e7dc6255014cbfd4b528d60bc22

This commit is contained in:
ali nabil 2025-02-13 02:40:21 +00:00 committed by GitHub
commit 397189647f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

7
Dockerfile Normal file
View File

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