dockerfile created

This commit is contained in:
Ali Barour 2025-02-13 00:54:12 +04:00
parent f2d13b8483
commit e8da7a4cff

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