update ui command
All checks were successful
Build and Push playground container / build-playground (push) Successful in 1m47s
Build and Push container / build (push) Successful in 4m9s

This commit is contained in:
Angel Nunez Mencias 2025-06-02 02:54:55 +02:00
parent 205fc2cbd1
commit 8b5b1c937b
Signed by: angel.nunez
SSH key fingerprint: SHA256:z1nFAg1v1AfbhEHrgBetByUJUwziv2R2f4VyN75opcg

View file

@ -5,7 +5,7 @@ FROM python:3.12-slim
WORKDIR /app
COPY . /app/
RUN /usr/local/bin/python -m pip install --upgrade pip && \
/usr/local/bin/pip3 install -r requirements.txt
/usr/local/bin/pip3 install -r llama_stack/distribution/ui/requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "llama_stack/distribution/ui/app.py", "--server.port=8501", "--server.address=0.0.0.0"]