FROM node:18.17.1-alpine WORKDIR /ttc ADD . . RUN npm i RUN npm run build EXPOSE 3000 CMD [ "npm","start" ]