Skip to content

Commit

Permalink
Use ';' (not real newlines in docker string)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico authored Aug 19, 2024
1 parent 076a5e3 commit fe17c66
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .devcontainer/r-ancient-gcc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ RUN apt-get -qq update \

COPY DESCRIPTION .

RUN Rscript -e ' \
dcf = read.dcf("DESCRIPTION", c("Imports", "Suggests")) \
deps = names(tools:::.split_dependencies(dcf)) \
standard_pkgs = tools:::.get_standard_package_names() \
install.packages(setdiff(deps, standard_pkgs$base)) \
RUN Rscript -e ' \
dcf = read.dcf("DESCRIPTION", c("Imports", "Suggests")); \
deps = names(tools:::.split_dependencies(dcf)); \
standard_pkgs = tools:::.get_standard_package_names(); \
install.packages(setdiff(deps, standard_pkgs$base)); \
'

# setup cc()
Expand Down

0 comments on commit fe17c66

Please sign in to comment.