Xavier Antonio Ochoa Chehab commited on
Commit ·
a7389a1
1
Parent(s): 372722a
New commit
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -15,7 +15,8 @@ WORKDIR /app
|
|
| 15 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 16 |
RUN pip install --no-cache-dir --upgrade pip
|
| 17 |
RUN pip install --no-cache-dir uv
|
| 18 |
-
RUN
|
|
|
|
| 19 |
|
| 20 |
COPY --chown=user . /app
|
| 21 |
CMD python3 -m chainlit run app.py --host 0.0.0.0 --port 7860
|
|
|
|
| 15 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 16 |
RUN pip install --no-cache-dir --upgrade pip
|
| 17 |
RUN pip install --no-cache-dir uv
|
| 18 |
+
RUN pip install --no-cache-dir chainlit
|
| 19 |
+
RUN uv pip install langflow
|
| 20 |
|
| 21 |
COPY --chown=user . /app
|
| 22 |
CMD python3 -m chainlit run app.py --host 0.0.0.0 --port 7860
|