Skip to content

Issue #953: add MAKEFLAGS="-j2" to RStudio Dockerfiles for parallel compilation #1391

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

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions rstudio/c9s-python-3.11/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ LABEL name="odh-notebook-rstudio-server-c9s-python-3.11" \
USER 0

ENV R_VERSION=4.4.3
ENV MAKEFLAGS="-j2"

# Install R
RUN yum install -y yum-utils && \
Expand Down
1 change: 1 addition & 0 deletions rstudio/c9s-python-3.11/Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ LABEL name="odh-notebook-rstudio-server-cuda-c9s-python-3.11" \
USER 0

ENV R_VERSION=4.4.3
ENV MAKEFLAGS="-j2"

# Install R
RUN yum install -y yum-utils && \
Expand Down
1 change: 1 addition & 0 deletions rstudio/rhel9-python-3.11/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ RUN if [ -d "${SECRET_DIR}" ]; then \
fi

ENV R_VERSION=4.4.3
ENV MAKEFLAGS="-j2"

# Install R
RUN yum install -y yum-utils && \
Expand Down
1 change: 1 addition & 0 deletions rstudio/rhel9-python-3.11/Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ RUN if [ -d "${SECRET_DIR}" ]; then \
fi

ENV R_VERSION=4.4.3
ENV MAKEFLAGS="-j2"

# Install R
RUN yum install -y yum-utils && \
Expand Down
Loading