TravBot-v3/Dockerfile

9 lines
86 B
Docker

FROM node:current-alpine
COPY . .
RUN npm i
RUN npm run build
CMD ["npm", "start"]