ADD: dockerfile and pipeline

This commit is contained in:
tamsaleh
2024-10-07 12:05:28 -03:00
parent f2d13b8483
commit b39316219c
2 changed files with 39 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