Dockerfile 886 B

123456789101112131415161718192021222324252627282930313233
  1. FROM debian:bullseye
  2. RUN apt-get update \
  3. && apt-get install --yes --no-install-recommends \
  4. jupyter-notebook \
  5. r-cran-irkernel \
  6. `# https://github.com/rOpenGov/eurostat/blob/master/DESCRIPTION` \
  7. r-cran-broom \
  8. r-cran-classint \
  9. r-cran-dplyr \
  10. r-cran-httr \
  11. r-cran-jsonlite \
  12. r-cran-rcolorbrewer \
  13. r-cran-readr \
  14. r-cran-sf \
  15. r-cran-sp \
  16. r-cran-stringi \
  17. r-cran-stringr \
  18. r-cran-tibble \
  19. r-cran-tidyr \
  20. `# https://cran.r-project.org/web/packages/RefManageR/index.html ` \
  21. r-cran-bibtex \
  22. r-cran-lubridate \
  23. r-cran-xml2
  24. RUN useradd --create-home --groups staff notebook
  25. USER notebook
  26. RUN Rscript -e 'install.packages("eurostat")'
  27. VOLUME /home/notebook
  28. WORKDIR /home/notebook
  29. CMD ["jupyter", "notebook", "--ip=0.0.0.0"]