1 2 3 4 5 6 7 8
FROM node:alpine WORKDIR /usr/chessh_bot COPY package.json . RUN npm install\ && npm install typescript -g COPY . . RUN tsc CMD ["node", "./dist/index.js"]