Skip to content

Commit

Permalink
Revert "change quotes for some reason"
Browse files Browse the repository at this point in the history
This reverts commit 7da8285.
  • Loading branch information
jdhoffa committed Feb 15, 2024
1 parent 710435b commit 55d8e17
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ COPY . /workflow.scenario.preparation

WORKDIR /workflow.scenario.preparation

RUN Rscript -e "\
readRenviron('.env'); \
non_cran_pkg_deps <- c('RMI-PACTA/pacta.scenario.data.preparation'); \
RUN Rscript -e '\

Check failure on line 49 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

SC2016 info: Expressions don't expand in single quotes, use double quotes for that.

Check failure on line 49 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

SC2016 info: Expressions don't expand in single quotes, use double quotes for that.
readRenviron(".env"); \
non_cran_pkg_deps <- c("RMI-PACTA/pacta.scenario.data.preparation"); \
cran_pkg_deps <- setdiff(renv::dependencies()$Package, basename(non_cran_pkg_deps)); \
pak::pkg_install(pkg = c(non_cran_pkg_deps, cran_pkg_deps)); \
"
'

CMD ["Rscript","run_pacta_scenario_preparation.R"]

0 comments on commit 55d8e17

Please sign in to comment.