Skip to content

Commit

Permalink
Rearrnage order of install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cansavvy committed Jun 28, 2024
1 parent a79e706 commit 1c13cbe
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 All @@ -73,6 +70,9 @@ RUN Rscript -e "options(warn = 2);install.packages( \
'quarto'), \
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 1c13cbe

Please sign in to comment.