소스 검색

added curl, unzip, geopandas & xlrd

Fabian Peter Hammerle 4 년 전
부모
커밋
ebd41a5aef
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      Dockerfile

+ 11 - 0
Dockerfile

@@ -23,6 +23,17 @@ RUN apt-get update \
         r-cran-lubridate \
         r-cran-xml2
 
+# TODO merge
+RUN apt-get update \
+    && apt-get install --yes --no-install-recommends \
+        curl \
+        python3-geopandas \
+        python3-xlrd \
+        unzip
+RUN apt-get update \
+    && apt-get install --yes --no-install-recommends \
+        python3-distutils `# pyproj`
+
 RUN useradd --create-home --groups staff notebook
 USER notebook