Initial commit for full stack chatbot

This commit is contained in:
Mark Backman
2024-12-04 16:50:31 -05:00
parent c582297547
commit 752ad01ccd
2610 changed files with 174640 additions and 141 deletions

View File

@@ -0,0 +1,16 @@
FROM python:3.10-bullseye
RUN mkdir /app
RUN mkdir /app/assets
RUN mkdir /app/utils
COPY *.py /app/
COPY requirements.txt /app/
copy assets/* /app/assets/
copy utils/* /app/utils/
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "server.py"]