Add slack_bot docker image (#933)

This commit is contained in:
Sidharth Mohanty
2023-11-14 02:34:04 +05:30
committed by GitHub
parent bf3fac56e4
commit 23522b7b55
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /usr/src/
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "-m", "embedchain.bots.slack", "--port", "8000"]

View File

@@ -0,0 +1 @@
embedchain[slack, poe]==0.1.7