[Example] add example for nextjs app and discord/slack bots (#1111)

Co-authored-by: Deven Patel <deven298@yahoo.com>
This commit is contained in:
Deven Patel
2024-01-05 22:36:58 +05:30
committed by GitHub
parent b4a59d1bd5
commit 99261e5fb5
25 changed files with 682 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip install -r requirements.txt
COPY . /app
EXPOSE 8080
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]