Closed shrektan closed 7 years ago
&& echo "PATH=\"${PATH}\"" >> /usr/local/lib/R/etc/Renviron results in a fixed environment variable :
&& echo "PATH=\"${PATH}\"" >> /usr/local/lib/R/etc/Renviron
PATH="/usr/lib/rstudio-server/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
I guess it's the same issue as https://github.com/rocker-org/rocker/issues/198 . The ${PATH} should be protected by adding a \.
${PATH}
\
Nice, thanks! Want to patch this in the versioned Dockerfiles too (in the subdirs of rstudio/)?
rstudio/
Cheers,
You're welcome :beers:
&& echo "PATH=\"${PATH}\"" >> /usr/local/lib/R/etc/Renviron
results in a fixed environment variable :I guess it's the same issue as https://github.com/rocker-org/rocker/issues/198 . The
${PATH}
should be protected by adding a\
.