rocker-org / devcontainer-images

R Docker images built with Dev Container Features
https://rocker-project.org/images/devcontainer/images.html
MIT License
12 stars 4 forks source link

Add `devel` tag devcontainer #38

Closed nick-robo closed 11 months ago

nick-robo commented 1 year ago

It would be great to have the devel version of R since there are going to be some breaking changes in the next release.

I've tried messing around with it myself to get it to build a container using r-ver:devel but I can't seem to get it to work.

eitsupi commented 1 year ago

Thank you for your interest in this project.

I think the issue is build frequency and demand. I mean rocker/r-ver:devel is built daily, but CI in this repository does not build unless me (or other maintainers) run. This means that the image built here will always be older than the latest devel version.

What we are doing here now is just installing two Dev Container Features, ghcr.io/devcontainers/features/common-utils and ghcr.io/rocker-org/devcontainer-features/r-rig, on top of rocker/r-ver etc., so we figure if users want to try the latest devel version they can build this themselves.

Where did you not do well with your build?

Another criterion is that https://github.com/devcontainers/images does not provide a development version of the container for any of the languages.

nick-robo commented 1 year ago

I think I just need to get more familiar with the docker/dev container syntax. Thanks for the explanation.