Xavier Antonio Ochoa Chehab commited on
Commit ·
11a1afb
1
Parent(s): d3031f2
New commit
Browse files- Dockerfile +1 -1
- requirements.txt +1 -2
Dockerfile
CHANGED
|
@@ -13,7 +13,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
| 13 |
|
| 14 |
WORKDIR /app
|
| 15 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 16 |
-
RUN pip install
|
| 17 |
|
| 18 |
COPY --chown=user . /app
|
| 19 |
CMD python -m chainlit run app.py --host 0.0.0.0 --port 7860
|
|
|
|
| 13 |
|
| 14 |
WORKDIR /app
|
| 15 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 16 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 17 |
|
| 18 |
COPY --chown=user . /app
|
| 19 |
CMD python -m chainlit run app.py --host 0.0.0.0 --port 7860
|
requirements.txt
CHANGED
|
@@ -1,2 +1 @@
|
|
| 1 |
-
chainlit
|
| 2 |
-
langflow
|
|
|
|
| 1 |
+
chainlit
|
|
|