llama-stack-mirror/llama_stack/distribution/ui/Containerfile
Jamie Land 28b3f9ab83 : This is a combination of 3 commits.
Updated requirements for Playground

Updating Container File
2025-04-03 12:53:12 -04:00

11 lines
383 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
EXPOSE 8501
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]