Skip to content

Commit

Permalink
Merge pull request #25 from jhudsl/cansavvy/simplify
Browse files Browse the repository at this point in the history
Rearrange order of install steps
  • Loading branch information
cansavvy authored Oct 23, 2024
2 parents 99cd13d + 1c13cbe commit 0aa1ac1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base_ottr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

RUN Rscript -e "remove.packages('rlang')"

RUN curl -LO https://quarto.org/download/latest/quarto-linux-amd64.deb
RUN gdebi --non-interactive quarto-linux-amd64.deb

# Commonly used R packages
RUN Rscript -e "options(warn = 2);install.packages( \
c('rlang', \
Expand Down Expand Up @@ -80,6 +77,9 @@ RUN Rscript -e "options(warn = 2);install.packages( \
'webshot2'), \
repos = 'https://cloud.r-project.org/')"

RUN curl -LO https://quarto.org/download/latest/quarto-linux-amd64.deb
RUN gdebi --non-interactive quarto-linux-amd64.deb

# cow needs this dependency:
RUN Rscript -e "devtools::install_version('gitcreds', version = '0.1.1', repos = 'http://cran.us.r-project.org')"

Expand Down

0 comments on commit 0aa1ac1

Please sign in to comment.