Skip to content

Commit

Permalink
Merge pull request #156 from ChemiKyle/temp_patch_texlive
Browse files Browse the repository at this point in the history
Implement hacky fix for tlmgr 2023 being unable to install packages
  • Loading branch information
pbchase committed Mar 26, 2024
2 parents b753c0a + 1e81e81 commit d89410f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
FROM --platform=linux/amd64 rocker/verse:4.3.2
FROM --platform=linux/amd64 rocker/verse:4.3.3

WORKDIR /home/rocker

RUN apt update -y && apt install -y libmariadb-dev libmariadb-dev-compat
RUN apt install -y --no-install-recommends libxt6

# returns an error but tlmgr is updated to 2024 regardless
RUN wget ${CTAN_REPO}/update-tlmgr-latest.sh && bash update-tlmgr-latest.sh; exit 0

# install necessary libraries
RUN R -e "install.packages(c( \
'DBI', \
Expand Down
2 changes: 1 addition & 1 deletion R/logging.R
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ send_email <-
email_to <- unlist(strsplit(email_to, " "))
}

email_content <- list(email_body)
email_content <- email_body

if (!is.null(file_name)) {
output_dir <- tempdir()
Expand Down

0 comments on commit d89410f

Please sign in to comment.