mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-12 04:50:39 +00:00
We would like to rename the term `template` to `distribution`. To prepare for that, this is a precursor. cc @leseb
11 lines
383 B
Docker
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"]
|