llama-stack/llama_stack/distribution/ui/Containerfile
Angel Nunez Mencias 8943b283e9
All checks were successful
Build and Push playground container / build-playground (push) Successful in 2m2s
Build and Push container / build (push) Successful in 4m7s
fix install
2025-06-02 03:02:25 +02:00

12 lines
496 B
Docker

# More info on playground configuration can be found here:
# https://llama-stack.readthedocs.io/en/latest/playground
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"]