Adds the Dockerfile and the pipeline

This commit is contained in:
Ahmed-Elarosi
2024-12-11 17:08:02 +01:00
parent f2d13b8483
commit 6526fe2394
4 changed files with 47 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