Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,13 @@ RUN if [ -n "$CUDA_VERSION" ] ; then \
pip${PYTHON_VERSION} install --no-cache-dir git+https://github.com/mvpatel2000/flash-attention@main ; \
fi

###########################
# Install Pandoc Dependency
###########################
# Pandoc is needed for the documentation buid and is a nuisance to install via pip so just installing via dpkg
RUN wget https://github.com/jgm/pandoc/releases/download/2.19.2/pandoc-2.19.2-1-amd64.deb && \
dpkg -i pandoc-2.19.2-1-amd64.deb && \
rm pandoc-2.19.2-1-amd64.deb

################################
# Use the correct python version
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
target_folder = '/Applications/pandoc'
# Not handling windows; nobody uses root on windows lol

download_pandoc(version='2.18', download_folder=tmpdir, targetfolder=target_folder, delete_installer=True)
download_pandoc(version='2.19.2', download_folder=tmpdir, targetfolder=target_folder, delete_installer=True)

sys.path.insert(0, os.path.abspath('..'))

Expand Down