add docker build files

This commit is contained in:
spiral 2022-02-01 09:12:55 -05:00
parent dffb46f623
commit 62705ef20d
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
3 changed files with 46 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM alpine:latest
RUN apk add nodejs-current yarn
WORKDIR /app
COPY package.json yarn.lock /app/
RUN yarn
COPY . /app
CMD ["node", "bot.js"]