Dockerize discord bot and update docs to run the bot correctly (#919)

This commit is contained in:
Sidharth Mohanty
2023-11-08 23:54:57 +05:30
committed by GitHub
parent 98eb5b54be
commit 6864b4207b
3 changed files with 36 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
FROM python:3.11 AS backend
FROM python:3.11-slim
WORKDIR /usr/src/discord_bot
COPY requirements.txt .

View File

@@ -1,3 +1,9 @@
# Discord Bot
This is a docker template to create your own Discord bot using the embedchain package. To know more about the bot and how to use it, go [here](https://docs.embedchain.ai/examples/discord_bot).
This is a docker template to create your own Discord bot using the embedchain package. To know more about the bot and how to use it, go [here](https://docs.embedchain.ai/examples/discord_bot).
To run this use the following command,
```bash
docker run --name discord-bot -e OPENAI_API_KEY=sk-xxx -e DISCORD_BOT_TOKEN=xxx -p 8080:8080 embedchain/discord-bot:latest
```