diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-06 00:24:11 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-06 00:24:11 +0100 |
| commit | aa5d7e4730eece2190bdb44d3d890759f6773379 (patch) | |
| tree | 74d2781d3a4ee360a2b21f2ed099bf3e0d33e8fa | |
| parent | f345fec6b3473be3fa346b1ca9885dd9a34e3fa0 (diff) | |
| download | unnamed-group-aa5d7e4730eece2190bdb44d3d890759f6773379.tar unnamed-group-aa5d7e4730eece2190bdb44d3d890759f6773379.tar.gz unnamed-group-aa5d7e4730eece2190bdb44d3d890759f6773379.tar.bz2 unnamed-group-aa5d7e4730eece2190bdb44d3d890759f6773379.tar.xz unnamed-group-aa5d7e4730eece2190bdb44d3d890759f6773379.zip | |
add build dependencies for discord bot in Dockerfile
| -rw-r--r-- | 174bg/discord-bot/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/174bg/discord-bot/Dockerfile b/174bg/discord-bot/Dockerfile index 70acf68..5bcc897 100644 --- a/174bg/discord-bot/Dockerfile +++ b/174bg/discord-bot/Dockerfile @@ -1,5 +1,6 @@ FROM node:24-alpine WORKDIR /app +RUN apk add --no-cache git python3 make g++ COPY package*.json ./ RUN npm install COPY . . |
