basic structure setup
This commit is contained in:
parent
0ba46dad75
commit
95f8488227
9 changed files with 200 additions and 2 deletions
15
rag-chat-backend/Dockerfile
Normal file
15
rag-chat-backend/Dockerfile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
FROM python:3.10-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY ./requirements.txt /app
|
||||
|
||||
RUN apt-get update && apt-get install -y build-essential
|
||||
RUN pip install --upgrade pip
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
COPY . /app
|
||||
|
||||
CMD ["python", "src/app.py"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue