Kartik Goyal commited on
Commit ·
278024e
1
Parent(s): 9c2551d
updated requirements
Browse files- dockerfile +1 -1
- requirements.txt +2 -0
dockerfile
CHANGED
|
@@ -6,7 +6,7 @@ RUN apt-get update \
|
|
| 6 |
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
-
COPY pyproject.toml requirements.txt
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
|
| 12 |
COPY . .
|
|
|
|
| 6 |
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
+
COPY pyproject.toml requirements.txt ./
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
|
| 12 |
COPY . .
|
requirements.txt
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
|
|
| 1 |
fastapi
|
| 2 |
uvicorn
|
| 3 |
pydantic
|
| 4 |
requests
|
|
|
|
|
|
| 1 |
+
openenv-core>=0.2.0
|
| 2 |
fastapi
|
| 3 |
uvicorn
|
| 4 |
pydantic
|
| 5 |
requests
|
| 6 |
+
openai
|