giswqs commited on
Commit
7372c43
·
1 Parent(s): 5104104

Fix git issue

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,12 +1,12 @@
1
  FROM jupyter/base-notebook:latest
2
 
 
 
3
 
4
  RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \
5
  fix-permissions "${CONDA_DIR}" && \
6
  fix-permissions "/home/${NB_USER}"
7
 
8
- RUN apt-get update && apt-get install -y git
9
-
10
  COPY requirements.txt .
11
  RUN pip install -r requirements.txt
12
 
 
1
  FROM jupyter/base-notebook:latest
2
 
3
+ USER root
4
+ RUN apt-get update && apt-get install -y git
5
 
6
  RUN mamba install -c conda-forge leafmap geopandas localtileserver -y && \
7
  fix-permissions "${CONDA_DIR}" && \
8
  fix-permissions "/home/${NB_USER}"
9
 
 
 
10
  COPY requirements.txt .
11
  RUN pip install -r requirements.txt
12