Spaces:
Running
Running
Fix git issue
Browse files- 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 |
|