File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
cli/jobs/pipelines-with-components/basics/6c_r_iris/docker-context
sdk/python/jobs/pipelines/1d_pipeline_with_non_python_components/docker_context Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,5 @@ RUN ln -f /usr/bin/python3 /usr/bin/python
1919RUN R -e "install.packages(c('mlflow'), repos = 'https://cloud.r-project.org/')"
2020RUN R -e "install.packages(c('carrier'), repos = 'https://cloud.r-project.org/')"
2121RUN R -e "install.packages(c('optparse'), repos = 'https://cloud.r-project.org/')"
22- RUN R -e "install.packages(c('tcltk2'), repos = 'https://cloud.r-project.org/')"
22+ # R 4.0.0 compatible version of tcltk2
23+ RUN R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/tcltk2/tcltk2_1.2-11.tar.gz', repos=NULL, type='source');"
Original file line number Diff line number Diff line change @@ -19,4 +19,5 @@ RUN ln -f /usr/bin/python3 /usr/bin/python
1919RUN R -e "install.packages(c('mlflow'), repos = 'https://cloud.r-project.org/')"
2020RUN R -e "install.packages(c('carrier'), repos = 'https://cloud.r-project.org/')"
2121RUN R -e "install.packages(c('optparse'), repos = 'https://cloud.r-project.org/')"
22- RUN R -e "install.packages(c('tcltk2'), repos = 'https://cloud.r-project.org/')"
22+ # R 4.0.0 compatible version of tcltk2
23+ RUN R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/tcltk2/tcltk2_1.2-11.tar.gz', repos=NULL, type='source');"
You can’t perform that action at this time.
0 commit comments