| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | FROM debian:bullseyeRUN apt-get update \    && apt-get install --yes --no-install-recommends \        jupyter-notebook \        r-cran-irkernel \        `# https://github.com/rOpenGov/eurostat/blob/master/DESCRIPTION` \        r-cran-broom \        r-cran-classint \        r-cran-dplyr \        r-cran-httr \        r-cran-jsonlite \        r-cran-rcolorbrewer \        r-cran-readr \        r-cran-sf \        r-cran-sp \        r-cran-stringi \        r-cran-stringr \        r-cran-tibble \        r-cran-tidyr \        `# https://cran.r-project.org/web/packages/RefManageR/index.html ` \        r-cran-bibtex \        r-cran-lubridate \        r-cran-xml2# TODO mergeRUN apt-get update \    && apt-get install --yes --no-install-recommends \        curl \        python3-geopandas \        python3-xlrd \        unzipRUN apt-get update \    && apt-get install --yes --no-install-recommends \        python3-distutils `# pyproj`RUN useradd --create-home --groups staff notebookUSER notebookRUN Rscript -e 'install.packages("eurostat")'VOLUME /home/notebookWORKDIR /home/notebookCMD ["jupyter", "notebook", "--ip=0.0.0.0"]
 |