Xavier Antonio Ochoa Chehab commited on
Commit
ffc65e7
·
1 Parent(s): 2fe4ef6

New commit

Browse files
Files changed (1) hide show
  1. 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 /app/venv
13
- RUN . /app/venv/bin/activate && pip install uv && uv pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
- CMD /app/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 /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