diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,9 @@ -FROM node:alpine +FROM node:latest WORKDIR /usr/src/bot +RUN apt-get update && apt-get install -y build-essential libtool autoconf automake python3 + COPY package.json ./ COPY yarn.lock ./ @@ -10,4 +12,4 @@ RUN yarn install COPY . . -CMD ["node", "bot_discord.js"] +ENTRYPOINT ["node", "bot_discord.js", "--beta"] |
