forked from phoenix-oss/llama-stack-mirror
**What does this PR do?** This PR fixes a build issue with the Containerfile caused by missing requirement `llama-stack`. It updates the Containerfile to include the necessary requirements and upgrades the Python version to ensure successful builds. **Test Plan** The updated Containerfile has been tested, and the build now completes successfully with the required dependencies included.
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"]
|