Spot/Dockerfile

11 lines
164 B
Text
Raw Normal View History

2022-02-01 09:12:55 -05:00
FROM alpine:latest
RUN apk add nodejs-current npm yarn git
2022-02-01 09:12:55 -05:00
WORKDIR /app
COPY package.json yarn.lock /app/
RUN yarn
COPY . /app
CMD ["yarn", "ts-node", "bot.ts"]