We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/chainsawriot/rang/blob/de0f640bbfc253deb6947c30ebc56da863d0b368/R/installation.R#L117-L168
The index-based injection is kind of ugly (and risky). But the containerit way of OOP it is kind of overkill.
containerit
In general, there are five parts in a Dockerfile.
Dockerfile
FROM
ADD
ENV TZ UTC
COPY
rang.R
cache
compile_r.sh
RUN
CMD
CMD ["R"]
rstudio
The text was updated successfully, but these errors were encountered:
Refactor dockerfile generation code #117
0978db8
Merge pull request #119 from chainsawriot/dockerfile
a21735f
No branches or pull requests
https://github.com/chainsawriot/rang/blob/de0f640bbfc253deb6947c30ebc56da863d0b368/R/installation.R#L117-L168
The index-based injection is kind of ugly (and risky). But the
containerit
way of OOP it is kind of overkill.In general, there are five parts in a
Dockerfile
.FROM
stuff (+ADD
)ENV TZ UTC
)COPY
statements whererang.R
always gets copied,cache
andcompile_r.sh
optionalRUN
statements (either 1) just run rang, 2) just run compile_r, or mkdir lib and then 1 or 2)CMD
(AllCMD ["R"]
exceptrstudio
)The text was updated successfully, but these errors were encountered: