fix install
All checks were successful
Build and Push playground container / build-playground (push) Successful in 2m2s
Build and Push container / build (push) Successful in 4m7s

This commit is contained in:
Angel Nunez Mencias 2025-06-02 03:02:25 +02:00
parent 08905fc937
commit 8943b283e9
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 requirements.txt && \
/usr/local/bin/pip3 install -r llama_stack/distribution/ui/requirements.txt
EXPOSE 8501