fix build break

docs build was breaking because requirements file was getting ignored from .dockerignore
This commit is contained in:
Adil Hafeez 2026-02-09 09:49:57 -08:00
parent 631bd0db1a
commit 654e8211f5
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
3 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,8 @@ crates/target/
# Documentation & website
docs/
!docs/requirements.txt
!docs/source/
apps/
packages/

View file

@ -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

View file

@ -1,3 +1,5 @@
set -e
docker build -f docs/Dockerfile . -t sphinx
# Clean build output locally