mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2025-12-12 03:46:08 -05:00
* added message style command * docker setup scripts * reformat messageStyle.ts * fix: register unregister on deploy * add: messageStream preference * add: json config handler * update: messageCreate gets config * update: shifted chat to config callback * fix: naming conventions based on discord * update: setup in docs now * add: static docker ips * version increment * add: bot message for no config * fix: no config case * add: clarification for subnetting * update: version increment in lock file --------- Co-authored-by: JT2M0L3Y <jtsmoley@icloud.com>
20 lines
378 B
Docker
20 lines
378 B
Docker
# use node LTS image for version 18
|
|
FROM node:18.18.2
|
|
|
|
# set working directory inside container
|
|
WORKDIR /app
|
|
|
|
# copy package.json and the lock file into the container, and src files
|
|
COPY ./src ./src
|
|
COPY ./*.json ./
|
|
COPY ./.env ./
|
|
|
|
# install dependencies, breaks
|
|
RUN npm install
|
|
|
|
# build the typescript code
|
|
RUN npm run build
|
|
|
|
# start the application
|
|
CMD ["npm", "run", "prod"]
|