12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- FROM debian:bullseye
- RUN apt-get update \
- && apt-get install --yes --no-install-recommends \
- curl \
- jupyter-notebook \
- python3-distutils `
- python3-geopandas \
- python3-xlrd \
- r-cran-irkernel \
- unzip \
- `
- python3-cartopy \
- python3-descartes \
- python3-matplotlib \
- python3-pip \
- python3-seaborn \
- python3-setuptools \
- python3-wheel \
- `
- python3-deprecated \
- `
- python3-geopy \
- python3-joblib \
- python3-pillow \
- python3-rasterio \
- python3-requests \
- `
- 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 \
- `
- r-cran-bibtex \
- r-cran-lubridate \
- r-cran-xml2
- RUN chgrp staff /usr/local/bin `
- && chmod g+ws /usr/local/bin \
- && useradd --create-home --groups staff notebook
- USER notebook
- RUN pip3 install --system geoplot
- RUN Rscript -e 'install.packages("eurostat")'
- VOLUME /home/notebook
- WORKDIR /home/notebook
- CMD ["jupyter", "notebook", "--ip=0.0.0.0"]
|