Skip to content

Commit

Permalink
Fix build error for the rstudio image (#10)
Browse files Browse the repository at this point in the history
* replace devtools with remotes to fix build error
* fix line continuation typo
  • Loading branch information
Jswig committed Oct 9, 2020
1 parent 7e3584d commit 3e8e847
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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"]

0 comments on commit 3e8e847

Please sign in to comment.