AakashJammula commited on
Commit
406462a
·
1 Parent(s): 5c62a8c

rag change

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM python:3.12-slim
2
- COPY . .
3
- WORKDIR /
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  EXPOSE 8000
6
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
 
1
  FROM python:3.12-slim
2
+ WORKDIR /app
3
+ COPY . /app
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  EXPOSE 8000
6
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]