change path

This commit is contained in:
abdohosny1 2025-03-10 11:47:43 +02:00
parent f4b170d44c
commit b98adb06b6
2 changed files with 7 additions and 0 deletions

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