summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 8763c2f42fd77a21ebc8601e5bba70ed263283f0 (plain)
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"]