Xavier Antonio Ochoa Chehab commited on
Commit ·
527210d
1
Parent(s): ffc65e7
New commit
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -9,8 +9,8 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
| 9 |
|
| 10 |
WORKDIR /app
|
| 11 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 12 |
-
RUN python -m venv /venv
|
| 13 |
-
RUN . /venv/bin/activate && pip install uv && uv pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
|
| 15 |
COPY --chown=user . /app
|
| 16 |
-
CMD /venv/bin/activate && chainlit run app.py --host 0.0.0.0 --port 7860
|
|
|
|
| 9 |
|
| 10 |
WORKDIR /app
|
| 11 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 12 |
+
RUN python -m venv /home/user/venv
|
| 13 |
+
RUN . /home/user/venv/bin/activate && pip install uv && uv pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
|
| 15 |
COPY --chown=user . /app
|
| 16 |
+
CMD /home/user/venv/bin/activate && chainlit run app.py --host 0.0.0.0 --port 7860
|