diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-01-12 00:42:57 -0500 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-01-12 00:42:57 -0500 |
| commit | 9b484f3f18c7fb4c6d85cb696999271c993e9753 (patch) | |
| tree | 015e8191749291080768e07858004683c7a24be0 /Dockerfile | |
| parent | 7e65ae0e135098acad76b8081f34478b4efc077f (diff) | |
| download | AleeBot-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-- | 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"] |
