summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-01-12 00:42:57 -0500
committerAndrew Lee <andrew@alee14.me>2025-01-12 00:42:57 -0500
commit9b484f3f18c7fb4c6d85cb696999271c993e9753 (patch)
tree015e8191749291080768e07858004683c7a24be0 /Dockerfile
parent7e65ae0e135098acad76b8081f34478b4efc077f (diff)
downloadAleeBot-9b484f3f18c7fb4c6d85cb696999271c993e9753.tar.gz
AleeBot-9b484f3f18c7fb4c6d85cb696999271c993e9753.tar.bz2
AleeBot-9b484f3f18c7fb4c6d85cb696999271c993e9753.zip
Updated packages; Docker support for web; Fixed issues with author image
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"]