Spaces:
Sleeping
Sleeping
100stacks commited on
bug: troubleshooting build issues
Browse files- Dockerfile +1 -1
- requirements.txt +1 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ ENV HOME=/home/user \
|
|
| 10 |
WORKDIR $HOME/app
|
| 11 |
|
| 12 |
COPY . $HOME/app
|
| 13 |
-
COPY
|
| 14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 15 |
COPY . .
|
| 16 |
|
|
|
|
| 10 |
WORKDIR $HOME/app
|
| 11 |
|
| 12 |
COPY . $HOME/app
|
| 13 |
+
COPY ./requirements.txt ~/app/requirements.txt
|
| 14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 15 |
COPY . .
|
| 16 |
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
chainlit==
|
| 2 |
cohere==5.13.6
|
| 3 |
openai==1.59.5
|
| 4 |
tiktoken==0.8.0
|
|
|
|
| 1 |
+
chainlit==2.0.1
|
| 2 |
cohere==5.13.6
|
| 3 |
openai==1.59.5
|
| 4 |
tiktoken==0.8.0
|