123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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 apt-get update \
- && apt-get install --yes --no-install-recommends \
- python3-feather-format \
- `
- r-cran-maptools \
- r-cran-rgdal \
- r-cran-v8 \
- `
- r-cran-lazyeval \
- `
- g++ \
- libprotobuf-dev \
- make
- RUN apt-get update \
- && apt-get install --yes --no-install-recommends \
- `
- libgeos-dev \
- `
- libjq-dev \
- `
- protobuf-compiler
- 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("geojsonio")'
- RUN Rscript -e 'install.packages("eurostat")'
- VOLUME /home/notebook
- WORKDIR /home/notebook
- CMD ["jupyter", "notebook", "--ip=0.0.0.0"]
|