Skip to content
New issue

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

Fix build error for the rstudio image #10

Merged
merged 4 commits into from Oct 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion r/README.md
@@ -1,7 +1,7 @@
# rstudio

Images for using R with Popper. Each folder contains `Dockerfile` based on the
Rocker image of the same name
[Rocker](https://www.rocker-project.org/) image of the same name


## License
Expand Down
4 changes: 2 additions & 2 deletions r/rstudio/Dockerfile
Expand Up @@ -5,12 +5,12 @@ LABEL description="Used as a base for Popper workflows using R, rstudio and the
# labels match the corresponding Rocker image
LABEL version="4.0.0"


# move configuration file where rstudio server will find it
COPY rsession.conf /etc/rstudio

# install containerit
RUN R -e "devtools::install_github(\"o2r-project/containerit\")"
RUN R -e "install.packages(\"remotes\")" && \
R -e "remotes::install_github(\"o2r-project/containerit\")"

EXPOSE 8787
CMD ["bin/sh"]