mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 08:46:24 +02:00
9 lines
271 B
Docker
9 lines
271 B
Docker
FROM sphinxdoc/sphinx
|
|
|
|
WORKDIR /docs
|
|
COPY docs/requirements.txt /docs
|
|
RUN python3 -m pip install -r requirements.txt
|
|
RUN pip freeze
|
|
|
|
# Copy provider_models.yaml from the repo for documentation
|
|
COPY crates/hermesllm/src/bin/provider_models.yaml /docs/provider_models.yaml
|