aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: d44f3a244f677f4acf56a4dd4b2118588c5bf321 (plain) (blame)
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/src/index.js"]