Skip to content

Commit

Permalink
Hotfix: bibtex in dockerfile
Browse files Browse the repository at this point in the history
Bug search: pagesUI missing 'ui.steps' error
  • Loading branch information
earnaud committed Aug 30, 2021
1 parent 79bac61 commit 589933c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ RUN dpkg -S /usr/include/GL/gl.h
RUN echo "options(repos = c(CRAN = 'https://cran.rstudio.com/'), download.file.method = 'libcurl')" >> /usr/local/lib/R/etc/Rprofile.site
RUN R -e 'install.packages("devtools")'
RUN R -e 'devtools::install_version("remotes", version = "2.3.0")'
RUN Rscript -e 'remotes::install_version("bibtex", upgrade="never", version = "0.4.2.3")'
RUN Rscript -e 'remotes::install_version("glue",upgrade="never", version = "1.4.2")'
RUN Rscript -e 'remotes::install_version("mime",upgrade="never", version = "0.11")'
RUN Rscript -e 'remotes::install_version("stringr",upgrade="never", version = "1.4.0")'
Expand Down
Binary file modified MetaShARK_1.6.0.tar.gz
Binary file not shown.
1 change: 1 addition & 0 deletions R/fill_pages.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ tabPage <- function(id, title, ui, navTagList = NULL) {
#'
#' @noRd
pagesUI <- function(id, parent.id) {
base::traceback() # debug for preventing further uses
steps <- base::get("ui.steps", envir = .GlobalEnv)
.nb <- length(steps)
.ui.args <- vector("list", .nb)
Expand Down
3 changes: 2 additions & 1 deletion reload_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

docker stop MetaShARK_dockerized
docker build -t metashark:local .
docker run -d --rm -v ~/metashark_data:/root/dataPackagesOutput -p 3838:3838 --name MetaShARK_dockerized metashark:local
docker run -d --rm -v ~/dataPackagesOutput:/root/dataPackagesOutput -p 3838:3838 \
--name MS metashark:local

0 comments on commit 589933c

Please sign in to comment.