Skip to content

Commit 291e9c9

Browse files
authored
Merge pull request #1051 from cakephp/fix-docs-videos
Fix video paths
2 parents b7cee8d + c38e471 commit 291e9c9

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

docs.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Generate the HTML output.
22
FROM ghcr.io/cakephp/docs-builder as builder
33

4-
RUN pip install git+https://github.com/sphinx-contrib/video.git@master
4+
RUN pip install sphinxcontrib-video
55

66
# Copy entire repo in with .git so we can build all versions in one image.
77
COPY docs /data/docs
@@ -12,7 +12,7 @@ RUN cd /data/docs-builder \
1212
&& make website LANGS="$LANGS" SOURCE=/data/docs DEST=/data/website \
1313
# Move media files into the output directory so video elements work.
1414
&& mkdir -p /data/website/html/_static \
15-
&& cp /data/docs/static/* /data/website/html/_static/
15+
&& cp /data/docs/_static/* /data/website/html/_static/
1616

1717
# Build a small nginx container with just the static site in it.
1818
FROM ghcr.io/cakephp/docs-builder:runtime as runtime

0 commit comments

Comments
 (0)