feat: agregamos dockerfile y webserver a starters

agregamos  dockerfile y webserver a starters
This commit is contained in:
2023-01-08 04:57:27 -06:00
parent e5f6cf8563
commit f9e3bbc665
49 changed files with 616 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM node:lts-bullseye as bot
WORKDIR /app
COPY package*.json ./
RUN npm i
COPY . .
ARG PORT
CMD ["npm", "start"]