rocker-org / rocker-versioned

Run current & prior versions of R using docker
https://hub.docker.com/r/rocker/r-ver
GNU General Public License v2.0
297 stars 169 forks source link

rocker/r-ver points to now defunct mran mirror #241

Closed JSchoenbachler closed 2 years ago

JSchoenbachler commented 4 years ago

About 17 hours ago, Microsoft updated their mran mirrors to point to the cran links instead of mran:

https://github.com/Microsoft/microsoft-r-open/releases/tag/MRO-4.0.2

This is causing some package installation errors when using the image in CircleCI. Could you change the line in your Dockerfile from else MRAN=https://mran.microsoft.com/snapshot/${BUILD_DATE}; fi \ to else MRAN=https://cran.microsoft.com/snapshot/${BUILD_DATE}; fi \

cboettig commented 4 years ago

Yup, just noticed this today as well.

BTW, if you're seeing this you're probably running old rocker images. That's fine if you're trying to reproduce old stuff, but otherwise you might want to update to the newer 4.x series (which use RStudio RSPM instead of MRAN)

JSchoenbachler commented 4 years ago

Okay gotcha. Thanks!

JSchoenbachler commented 4 years ago

As another update, it looks like MS fixed this on their own end by just redirecting from the mran.microsoft to cran.microsoft so this doesn't seem to throw an error anymore.