mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
fix build break (#730)
docs build was breaking because requirements file was getting ignored from .dockerignore
This commit is contained in:
parent
631bd0db1a
commit
99077d83fb
3 changed files with 5 additions and 1 deletions
|
|
@ -7,6 +7,8 @@ crates/target/
|
|||
|
||||
# Documentation & website
|
||||
docs/
|
||||
!docs/requirements.txt
|
||||
!docs/source/
|
||||
apps/
|
||||
packages/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM sphinxdoc/sphinx
|
||||
|
||||
WORKDIR /docs
|
||||
ADD docs/requirements.txt /docs
|
||||
COPY docs/requirements.txt /docs
|
||||
RUN python3 -m pip install -r requirements.txt
|
||||
RUN pip freeze
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
set -e
|
||||
|
||||
docker build -f docs/Dockerfile . -t sphinx
|
||||
|
||||
# Clean build output locally
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue