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
Changes from 3 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
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\")" \
Copy link
Contributor

@ivotron ivotron Oct 2, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is missing an && \ at the end

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed. This should be ready to merge

R -e "remotes::install_github(\"o2r-project/containerit\")"

EXPOSE 8787
CMD ["bin/sh"]