-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed tinytex 2x compile makeindex in dockerfile; fixed broken dep fo…
…r canlang
- Loading branch information
1 parent
b084d85
commit d47d791
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ RUN Rscript -e "reticulate::install_miniconda()" | |
RUN Rscript -e "reticulate::conda_install('r-reticulate', 'python-kaleido')" | ||
RUN Rscript -e "reticulate::conda_install('r-reticulate', 'plotly', channel = 'plotly')" | ||
|
||
RUN Rscript -e "devtools::install_github('mountainMath/cancensus@5a5d61759d477986d40dd87fa9a6532ff6037efe')" | ||
RUN Rscript -e "devtools::install_github('ttimbers/[email protected]')" | ||
|
||
# install LaTeX packages | ||
|
@@ -100,3 +101,10 @@ RUN tlmgr install amsmath \ | |
RUN sed -i 's/256MiB/4GiB/' /etc/ImageMagick-6/policy.xml | ||
RUN sed -i 's/512MiB/4GiB/' /etc/ImageMagick-6/policy.xml | ||
RUN sed -i 's/1GiB/4GiB/' /etc/ImageMagick-6/policy.xml | ||
|
||
|
||
# install version of tinytex with fixed index double-compile (no release for this yet, so install from commit hash) | ||
RUN Rscript -e "remove.packages('xfun')" | ||
RUN Rscript -e "devtools::install_github('yihui/[email protected]')" | ||
RUN Rscript -e "remove.packages('tinytex')" | ||
RUN Rscript -e "devtools::install_github('yihui/tinytex@5d211d43944d322fca49e5f0d97f34b9c46ff9ab')" |