aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index f962f11..3f4f771 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]